diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/base_automation | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/base_automation')
94 files changed, 49842 insertions, 0 deletions
diff --git a/addons/base_automation/__init__.py b/addons/base_automation/__init__.py new file mode 100644 index 00000000..dc5e6b69 --- /dev/null +++ b/addons/base_automation/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/addons/base_automation/__manifest__.py b/addons/base_automation/__manifest__.py new file mode 100644 index 00000000..bd709a53 --- /dev/null +++ b/addons/base_automation/__manifest__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Automated Action Rules', + 'version': '1.0', + 'category': 'Sales/Sales', + 'description': """ +This module allows to implement action rules for any object. +============================================================ + +Use automated actions to automatically trigger actions for various screens. + +**Example:** A lead created by a specific user may be automatically set to a specific +Sales Team, or an opportunity which still has status pending after 14 days might +trigger an automatic reminder email. + """, + 'depends': ['base', 'resource', 'mail'], + 'data': [ + 'security/ir.model.access.csv', + 'data/base_automation_data.xml', + 'views/base_automation_view.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/base_automation/data/base_automation_data.xml b/addons/base_automation/data/base_automation_data.xml new file mode 100644 index 00000000..2cf13f46 --- /dev/null +++ b/addons/base_automation/data/base_automation_data.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + <record id="ir_cron_data_base_automation_check" model="ir.cron"> + <field name="name">Base Action Rule: check and execute</field> + <field name="model_id" ref="model_base_automation"/> + <field name="state">code</field> + <field name="code">model._check(True)</field> + <field name="interval_number">4</field> + <field name="interval_type">hours</field> + <field name="numbercall">-1</field> + <field name="doall" eval="False"/> + <field name="active" eval="False" /> + </record> + </data> +</odoo> diff --git a/addons/base_automation/i18n/af.po b/addons/base_automation/i18n/af.po new file mode 100644 index 00000000..cf2936af --- /dev/null +++ b/addons/base_automation/i18n/af.po @@ -0,0 +1,577 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +# Andre de Kock <adekock11@gmail.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Andre de Kock <adekock11@gmail.com>, 2017\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "Aktief" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Gekanselleer" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Geskep deur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Geskep op" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Vertoningsnaam" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Laas Gewysig op" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Laas Opgedateer deur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Laas Opgedateer op" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "Naam" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Vennoot" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Volgorde" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Stand" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "Onderwerp" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "Gebruiker" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/am.po b/addons/base_automation/i18n/am.po new file mode 100644 index 00000000..322c4c7b --- /dev/null +++ b/addons/base_automation/i18n/am.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "ተሰርዟል" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "ተባባሪ" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "ቅደም ተከተል" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "ሁኔታው" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/ar.po b/addons/base_automation/i18n/ar.po new file mode 100644 index 00000000..bda70266 --- /dev/null +++ b/addons/base_automation/i18n/ar.po @@ -0,0 +1,621 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# amrnegm <amrnegm.01@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Zuhair Hammadi <zuhair12@gmail.com>, 2020 +# Shaima Safar <shaima.safar@open-inside.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Shaima Safar <shaima.safar@open-inside.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "وصف الإجراء" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "اسم الإجراء" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "إجراء مطلوب" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "نوع الإجراء" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "نشط" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "النشاط" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "نوع مستخدم النشاط" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "إضافة قنوات" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "إضافة متابعين" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "يُطبق على" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "مؤرشف" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "إجراء تلقائي" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "الإجراءات التلقائية" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "تشغيل تلقائي" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "قاعدة الإجراء الأساسي: التحقق والتنفيذ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "حسب تعديل النموذج" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "على أساس شرط زمني" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "نطاق ما قبل التحديث" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "كائن الربط" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "نوع الربط" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "إجراءات تابعة" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"إجراءات السيرفر التابعة التي سيتم تنفيذها. لاحظ أن القيمة المُعادة من إجراء " +"الإعادة الأخير ستستخدم كقيمة معادة عمومية." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "الأيام" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"المهلة بعد تاريخ التفعيل\n" +" يمكنك وضع قيمة سالبة إذا أردت أن تكون المهلة قبل\n" +" تاريخ التفعيل، مثل إرسال تذكير قبل 15 دقيقة من بداية اجتماع." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "المهلة بعد تاريخ التفعيل" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "نوع المهلة" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "تاريخ الاستحقاق في" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "نوع الاستحقاق" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "قالب البريد الإلكتروني" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "معرف خارجي" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "المجموعات" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "الساعات" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "المُعرف" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "معرف الإجراء إن كان معرفًا في ملف XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "إذا كان موجودًا، يتوجب استيفاء هذا الشرط قبل تنفيذ قاعدة الإجراء." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "إذا كان موجودًا، فسيتوجب استيفاء هذا الشرط قبل تحديث السجل." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "اخر تشغيل" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "الدقائق" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "الكائن" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "اسم الكائن" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"الكائن المستخدم في إنشاء أو تحديث السجل. اختر قيمة لهذا الحقل فقط إذا كنت " +"تريد كائنًا مختلفًا عن الكائن الأساسي." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "الكائن الذي تجرى عليه إجراءات السيرفر." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "شهور" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "الملاحظات" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "تفعيل عند تغير قيمة الحقول" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "عند الإنشاء" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "عند الإنشاء والتحديث" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "عند الحذف" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "عند التحديث" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"نص مساعد اختياري للمستخدمين يشمل وصفًا للعرض المرجو. مثلًا: طريقة الاستخدام،" +" والهدف من الإنشاء." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "كود بايثون" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "المسئول" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "المسلسل" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "إجراء السيرفر" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "إجراءات السيرفر" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"بتعيين قيمة سيكون هذا الإجراء متاحًا في الشريط الجانبي للنموذج المعطى." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "ضبط تشغيل آلي جديد" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "الملخص" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "الكائن المستهدف" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "اسم الطراز المستهدف" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "اسم تقني للمستخدم في السجلات" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"لا يمكن استخدام \"%(trigger_value)s\" %(trigger_label)s إلا مع نوع الإجراء " +"\"%(state_value)s\"" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "المفعل" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "تاريخ التفعيل" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "استخدام" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"استخدم القيمة 'مستخدم محدد' لتعيين نفس المستخدم على النشاط التالي. واستخدم " +"'مستخدم عام من السجل' لتحديد اسم حقل المستخدم المراد من السجل." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "استخدام التقويم" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"استخدم الإجراءات الآلية لتفعيل الإجراءات تلقائيًا على\n" +" شاشات مختلفة. مثلًا: يمكن لترشيح مُقدم من قبل مستخدم ما\n" +" أن يُعين تلقائيًا لفريق مبيعات محدد، أو لفرصة بيع لا تزال\n" +" معلقة لـ14 يومًا أن تُفعل تلقائيًا رسالة بريد تذكيرية." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "اسم حقل المستخدم" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "ربط القيمة" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "تحذير" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"عند حساب شروط زمنية تعتمد على الأيام، من الممكن استخدام التقويم لحساب " +"التاريخ المطلوب وفقًا لأيام العمل." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"عند التعامل مع عدة إجراءات، يعتمد ترتيب التنفيذ على تسلسلهم. الرقم الأصغر " +"يعني أولوية أقل." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"متى يتم تفعيل الشرط.\n" +" إذا كان له قيمة، سيتحقق منها المجدول. وإذا كان فارغًا، سيتم التحقق منه عند الإنشاء والتحديث." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "عند إلغاء تحديده، سيتم إخفاء هذه القاعدة ولن يتم تنفيذها." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"اكتب كود بايثون الذي سينفذه الإجراء. بعض المتغيرات متاحة للاستخدام؛ وستجد " +"مساعدة لكيفية الكتابة بلغة بايثون في تبويب مساعدة." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/az.po b/addons/base_automation/i18n/az.po new file mode 100644 index 00000000..738f64b5 --- /dev/null +++ b/addons/base_automation/i18n/az.po @@ -0,0 +1,650 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:16+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Automated Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Automated Rule Test" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test__customer +msgid "" +"Check this box if this contact is a customer. It can be selected in sales " +"orders." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__partner_id +msgid "Partner" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record on " +"used by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +msgid "Scheduled Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__state +msgid "Status" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:87 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:86 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" diff --git a/addons/base_automation/i18n/base_automation.pot b/addons/base_automation/i18n/base_automation.pot new file mode 100644 index 00000000..2fd1548f --- /dev/null +++ b/addons/base_automation/i18n/base_automation.pot @@ -0,0 +1,584 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-04-21 10:46+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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/bg.po b/addons/base_automation/i18n/bg.po new file mode 100644 index 00000000..d037020e --- /dev/null +++ b/addons/base_automation/i18n/bg.po @@ -0,0 +1,614 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Action Description" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Название на действието" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Действие, което следва да се извърши" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Вид действие" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Активен" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Дейност" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Добавете канал" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Добавете последователи" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Приложете върху" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Архивиран" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Автоматизирано действие" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Автоматизирани действия" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Авотматизация" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Въз основа на корекция на форма" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Въз основа на времево условие" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Преди да актуализирате домейн" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Binding Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Binding Type" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Child Actions" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Дни" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Забавяне след пусковата дата.\n" +" Можете да поставите отрицателно число, ако се нуждаете от забавяне преди\n" +" пусковата дата, като изпратите напомняне, което да се активира 15 минути преди дадено заседание." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Забавяне след пусковата дата" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Вид забавяне" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Шаблон за имейл" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Външна ИН" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Групи" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Часове" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Ако е налице, това условие трябва да бъде изпълнено преди да се приложи " +"правилото за действие." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Ако е налице, това условие трябва да бъде изпълнено преди актуализацията на " +"записа" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Минути" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Модел" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Име на модела" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model on which the server action runs." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Месеци" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Забележка" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Тригер за замяна на полета" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "В процес на създаване" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "В процес на създаване & актуализиране" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "В процес на премахване" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "В процес на актуализиране" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Код Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Отговорно лице" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Последователност" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Действие на сървър" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Действия на сървър" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Setting a value makes this action available in the sidebar for the given " +"model." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Обобщение" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Целеви модел" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Име на целеви модел" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Тригер" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Дата на изпълнение" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Употреба" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Използвайте календар" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Value Mapping" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Предупреждение" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"При изчисляване на времево условие на ежедневна база, е възможно да " +"използвате календар, за да изчислите датата въз основа на работните дни." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Когато се налага условието да влезе в сила.\n" +" Ако е налице, ще бъде отметнато от планьора. Ако мястото е празно, ще бъде отметнато при създаването и актуализирането." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" +"Когато не е отметнато, правилото е скрито и не може да бъде приложено." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/bn.po b/addons/base_automation/i18n/bn.po new file mode 100644 index 00000000..99c16ee0 --- /dev/null +++ b/addons/base_automation/i18n/bn.po @@ -0,0 +1,589 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2021 +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "কর্ম বিবরণ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "কর্ম নাম" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "কর্ম করতে" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "কর্ম প্রকার" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "সক্রিয়" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "কর্মকাণ্ড" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "কার্যকলাপ ব্যবহারকারী প্রকার" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "চ্যানেল যোগ করুন" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "অনুসরণকারীদের যোগ করুন" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "উপর প্রযোজ্য" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "আর্কাইভ করা" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "স্বয়ংক্রিয় কাজ" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "স্বয়ংক্রিয় কর্ম" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "স্বয়ংক্রিয়তা" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "বেস কর্ম নিয়ম পরীক্ষা ও সম্পাদন করা " + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "ফর্ম অদলবদল এর উপর ভিত্তি করে" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "সময় শর্তের উপর ভিত্তি করে" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "ডোমেইন হালনাগাদের পূর্বে " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "বাঁধাই মডিউল" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "বাঁধাই ধরণ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "গৌণ কর্ম " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "দ্বারা সৃষ্টি" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "তৈরি" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "দিন" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "বাহ্যিক আইডি" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "গ্রুপ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "আইডি " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "একটি এক্সএমএল ফাইল সংজ্ঞায়িত কার্য আইডি" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "সর্বশেষ আপডেট করেছেন" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "সর্বশেষ আপডেট হয়েছে" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "মিনিট" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "মডেল" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "দায়িত্বপ্রাপ্ত" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "ক্রম" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "সার্ভার অ্যাকশন" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "সতর্কীকরণ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/bs.po b/addons/base_automation/i18n/bs.po new file mode 100644 index 00000000..52a2201b --- /dev/null +++ b/addons/base_automation/i18n/bs.po @@ -0,0 +1,662 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +# Bole <bole@dajmi5.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:49+0000\n" +"PO-Revision-Date: 2018-10-08 06:49+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Opis akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Naziv akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Akcija za uraditi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tip akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__active +msgid "Active" +msgstr "Aktivan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivnost" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Dodaj kanale" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Dodaj pratioce" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatizirane radnje" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Automated Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Automated Rule Test" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizacija" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Vezni model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Tip vezivanja" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Otkazan" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test__customer +msgid "" +"Check this box if this contact is a customer. It can be selected in sales " +"orders." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Podređena akcija" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Podređena serverska akcija koja će biti izvršena. Zapamtite da će zadnja " +"vraćena vrijednost akcije biti korišćena kao globalna vraćena vrijednost." + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "Zatvoreno" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Create/Write Target Model" +msgstr "Kreiraj/Piši ciljani model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "Dani" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__deadline +msgid "Deadline" +msgstr "Rok izvršenja" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Odgodi nakon datuma okidanja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Vrsta odgode" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Predložak email-a" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Externi ID" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "Sati" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Ako je prisutan, ovaj uslov mora biti ispunjen prije ažuriranja zapisa." + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "U Toku" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__customer +msgid "Is a Customer" +msgstr "Kupac" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__date_action_last +msgid "Last Action" +msgstr "Posljednja akcija" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Posljednje pokretanje" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__lead_id +msgid "Lead" +msgstr "Potencijal" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__line_ids +msgid "Line" +msgstr "Stavka" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link using field" +msgstr "Polje koje koristi vezu" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "Minute" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Model Description" +msgstr "Opis modela" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Naziv modela" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model na kojem se izvršava serverska akcija." + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "Mjeseci" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__name +msgid "Name" +msgstr "Naziv:" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Novi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Zabilješka" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Opcionalni tekst pomoći za korisnike sa opisom ciljnog pogleda, kao što je " +"njegova upotreba i svrha." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "Na čekanju" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__priority +msgid "Priority" +msgstr "Prioritet" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record on " +"used by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Kod" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "Ukloni kontekstnu akciju povezanu sa ovom serverskom akcijom" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__user_id +msgid "Responsible" +msgstr "Odgovoran" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +msgid "Scheduled Action" +msgstr "Zakazane akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serverska akcija" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Serverske akcije" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Postavljanjem vrijednosti omogućava ovoj akciji da bude dostupna u meniju " +"ovog modela." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__state +msgid "Status" +msgstr "Status" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__name +msgid "Subject" +msgstr "Tema" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Sažetak" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:87 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Datum okidanja" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Upotreba" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__user_id +msgid "User" +msgstr "Korisnik" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapirana vrijednost" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:86 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Kada nije označeno, pravilo je skriveno i neće biti izvršeno." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" diff --git a/addons/base_automation/i18n/ca.po b/addons/base_automation/i18n/ca.po new file mode 100644 index 00000000..eb6bfce0 --- /dev/null +++ b/addons/base_automation/i18n/ca.po @@ -0,0 +1,619 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2020 +# Carles Antoli <carlesantoli@hotmail.com>, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# Arnau Ros, 2020 +# jabelchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: jabelchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Descripció de l'acció" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nom d'acció" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Per fer" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tipus d'acció" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Actiu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Activitat" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Tipus d'activitat d'usuari" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Afegeix Canals" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Afegir seguidors " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Aplicar a" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arxivat" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Acció automatitzada" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Accions automatitzades" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatització" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Basat en el formulari de modificació " + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Basat en la condició de temps " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Després d'actualitzar el domini " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Accions filles" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Les accions de servidor filles que seran executades. Tingui en compte que " +"l'últim valor tornat serà utilitzat com valor de retorn global." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dies" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Endarreriment després de la data d'activació.Pot col·locar un número negatiu" +" si necessita un retràs davant de la data d'activació, com enviar un " +"recordatori de 15 min abans d'una reunió." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Retard després de la data d'activació" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tipus de retard" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Data de venciment en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipus de venciment" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Plantilla de correu electrònic" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID externa " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grups" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Hores" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID de l'acció si està definida a l'arxiu XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Si està marcada aquesta casella, la condició ha de satisfer-se abans " +"d'executar la regla d'acció." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Si està present, aquesta condició ha de satisfer-se abans de l'actualització" +" del registre." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Última execució" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minuts" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nom del model" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model per a la creació / actualització del registre. Establiu aquest camp " +"només per especificar un model diferent que el model base." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Mesos" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Nota" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Activar camps a modificar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "A la Creació" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "A la Creació i Actualització" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "A l'Esborrar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "A l'Actualitzar" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Text d'ajuda opcional pels usuaris amb una descripció de la vista " +"destinació, com el vostre ús i el vostre propòsit." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Codi Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Seqüència" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Acció del Servidor " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Accions del servidor" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Establir-hi un valor fa que aquesta acció estigui disponible a la barra " +"lateral pel model determinat." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Resum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Model destí" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nom del model de destí" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Activació" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Data d'activació" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Ús" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Utilitzar el calendari " + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapeig de valors" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Avís" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Quan es calcula una condició basada en dies, es pot utilitzar un calendari " +"per calcular la data basada en dies laborables." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Quan es lidia amb múltiples accions, l'ordre d'execució es basa en la " +"seqüència. Números baixos signifiquen major prioritat." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Quan la condició ha de ser activada.Si està present, serà revisada pel programador. \n" +"Si està buida, serà revisada en la creació i actualització." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Si no està marcat, la regla està oculta i no s'executarà." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Escriviu el codi Python que executarà l'acció. Hi ha algunes variables " +"disponibles pel seu ús. Trobareu ajuda sobre expressions Python a la " +"pestanya d'ajuda. " + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/ckb.po b/addons/base_automation/i18n/ckb.po new file mode 100644 index 00000000..006e2eb1 --- /dev/null +++ b/addons/base_automation/i18n/ckb.po @@ -0,0 +1,588 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "چالاک" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "چالاکی" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "ئەرشیفکراو" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "دروستکراوە لەلایەن" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "دروستکراوە لە" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "ڕۆژ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ناسنامە" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "دواین تازەکردنەوە لەلایەن" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "دواین تازەکردنەوە لە" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "مۆدێل" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "مەنگەکان" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "تێبینی" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "بەرپرسیار" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "ڕیزبەندی" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "کرداری ڕاژە" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "کردارەکانی گەڕان" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "پوختە" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "ئاگاداری" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/cs.po b/addons/base_automation/i18n/cs.po new file mode 100644 index 00000000..d300bb18 --- /dev/null +++ b/addons/base_automation/i18n/cs.po @@ -0,0 +1,639 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2021 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Popis akce" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Název akce" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Akce k provedení" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Typ akce" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktivní" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Činnost" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Typ uživatelské aktivity" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Přidat kanály" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Přidat sledující" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Použít na" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archivováno" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatizovaná akce" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatizované akce" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizace" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Základní pravidlo akce: zkontrolujte a proveďte" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Na základě úpravy formuláře" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Založeno na časovaném stavu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Před aktualizací domény" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Vazebný model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Typ vazby" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Vazba typů zobrazení" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Podřízené akce" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Podřízené akce serveru, které budou provedeny. Všimněte si, že poslední " +"vrácená zpětná hodnota akce bude použita jako globální návratová hodnota." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Vytvořeno od" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dny" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Po datu spuštění" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Typ zpoždění" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Zakázat akci" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Datum vypršení" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Typ termínu" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Zakázat akci" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Šablona e-mailu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Externí ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Pole, která spouští výměnu." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Skupiny" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Hodiny" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID akce, pokud je definována v souboru XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Pokud je tato podmínka přítomna, musí být splněna před provedením pravidla " +"akce." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "Existuje-li, musí být podmínka spolněna po aktualizaci záznamu." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Naposledy spuštěno" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno od" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Zpráva o nejmenším zpoždění" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Pole odkazu" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minut" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Název modelu" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model pro tvorbu / aktualizaci záznamů. Nastavte toto pole pouze pro zadání " +"jiného modelu než pro základní model." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model, na kterém je spuštěna akce serveru." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "měsíců" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Poznámka" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "Tuto akci lze spustit až %d minut po jeho harmonogramu." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Při změně polí se spustí" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Na stvoření" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Při vytváření a aktualizaci" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Při mazání" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Při aktualizaci" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Volitelný text nápovědy pro uživatele s popisem cílového zobrazení, jako je " +"jeho použití a účel." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Zadejte pole použité k propojení nově vytvořeného záznamu se záznamem " +"použitým akcí serveru." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python kód" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Odpovědný" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Číselná řada" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Akce serveru" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Akce serveru" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Nastavením hodnoty je tato akce k dispozici v postranním panelu daného " +"modelu." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Nastavit novou automatizovanou automatizaci" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Shrnutí" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Cílový model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Název cílového modelu" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Technické jméno uživatele v záznamu" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Akce bude spuštěna, pouze pokud je jedno z těchto polí aktualizováno. Pokud " +"jsou prázdné, všechna pole jsou sledována." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"K chybě došlo během provádění automatizované akce\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Spouštěč" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Datum spouštěče" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Spouštěcí pole" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Typ akce serveru. K dispozici jsou následující hodnoty:\n" +"- 'Execute Python Code': blok kódu Pythonu, který bude spuštěn\n" +"- 'Create': vytvoření nového záznamu s novými hodnotami\n" +"- 'Update a Record': aktualizuje hodnoty záznamu\n" +"- 'Execute several actions': definujte akci, která spustí několik dalších akcí serveru\n" +"- 'Send Email': automaticky odešle e-mail (u Diskuse)\n" +"- 'Add Followers': přidá sledující k záznamu (u Diskuse)\n" +"- 'Create Next Activity': vytvoří novou aktivitu (u Diskuse)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Použití" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Pomocí funkce „Specifický uživatel“ vždy přiřadíte stejného uživatele k " +"další aktivitě. Pomocí možnosti „Obecný uživatel ze záznamu“ zadejte název " +"pole uživatele, který chcete v záznamu vybrat." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Použít kalendář" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Použite automatizované akcie na automatické spustenie akcií pre\n" +"rôzne obrazovky. Príklad: potenciálny zákazník vytvorený konkrétnym používateľom môže\n" +"byť automaticky nastavený na konkrétny predajný tím alebo\n" +"príležitosť, ktorá po 14 dňoch stále má stav čakajúci\n" +"spustiť automatický e-mail s pripomenutím." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Název uživatelského pole" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapování hodnot" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Varování" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Při výpočtu denního časového stavu je možné pro výpočet data podle " +"pracovních dnů použít kalendář." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Při řešení více akcí je pořadí provedení založeno na pořadí. Nízké číslo " +"znamená vysokou prioritu." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Kdy má být podmínka spuštěna.\n" +"Pokud je přítomno, bude zkontrolováno plánovačem. Pokud je prázdné, bude zkontrolováno při vzniku a aktualizaci." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Pokud neoznačíte, pravidlo nebude vidět neprovede se." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Napište kód Pythonu, který provede akce. Některé proměnné jsou k dispozici " +"pro použití; Nápověda k výrazu Python je uvedena na kartě nápovědy." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Můžete požádat správce, aby tuto automatizovanou akci deaktivoval nebo " +"opravil." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Tuto automatizovanou akci můžete deaktivovat nebo upravit tak, aby se " +"problém vyřešil." diff --git a/addons/base_automation/i18n/da.po b/addons/base_automation/i18n/da.po new file mode 100644 index 00000000..6e827956 --- /dev/null +++ b/addons/base_automation/i18n/da.po @@ -0,0 +1,655 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# Ejner Sønniksen <ejner@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# walther_b <wba@miracle.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Handlingsbeskrivelse" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Navn på handling" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Kræver handling" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Handlingstype" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivitet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Aktv brugertype" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Tilføj kanaler" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Tilføj tilhænger" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Anvend på" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arkiveret" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatiseret handling" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatiske aktioner" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatisering" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Basis handlings regel: Tjek og udfør" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Baseret på Formular modificering" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Baseret på tidsstyret tilstand" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Før opdater domæne" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Bindingsmodel" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Bindingstype" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Binding visningstyper" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Afkoms handlinger" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Afkoms server handlinger, som vil blive udført. Bemærk at den sidst " +"returnerede handlings værdi, vil blive brugs som global returnerings værdi." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dage" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Forsinkelse efter trigger dato.\n" +" Du kan angive et negativt tal hvis du skal bruge en forsinkelse før\n" +" trigger datoen, som at sende en påmindelse 15 minutter før et møde." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Forsinkelse efter trigger tid" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Forsinkelses type" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Deaktiver handling" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Deaktivering af denne automatiske handling vil gøre dig i stand til at fortsætte dit workflow\n" +" men al data oprettet efter dette kan muligvis blive ødelagt,\n" +" eftersom du effektivt set deaktivere en tilpasning som muligvis angiver\n" +" vigtige og/eller påkrævede felter." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Forfaldsdato om" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Forfaldstype" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Rediger handling" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-mail skabelon" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Eksternt ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Felter der udløser onchange funktionen." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupper" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Timer" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Handlingens ID hvis defineret i en XML-fil" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Hvis tilstede, skal denne betingelse være opfyldt før afviklingen af " +"handlings rollen." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Hvis eksisterer, skal denne betingelse være opfyldt før opdatering af post." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Seneste afvikling" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Mindst Forsinkelses Besked" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Link Felt" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutter" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Modelnavn" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model for datasæt oprettelse / opdatering. Udfyld kun dette felt for at " +"angive en anden model end basis modellen." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model hvorpå server handlingen kører." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Måneder" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Notat" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Bemærk at denne handling kan blive udløst op til %d minutter efter dets " +"planlagte tidspunkt." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "On Change Fields Trigger" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Ved oprettelse" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Om oprettelse & opdatering" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Ved sletning" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Om opdatering" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Valgfri hjælpetekst til brugere, med en beskrivelse af mål visningen, så som" +" forbrug eller formål." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Angiv feltet, som anvendes til at forbinde det nyoprettede datasæt, på " +"datasættet anvendt af server handlingen." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python kode" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Ansvarlig" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Server handling" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Server handling" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Indstillingen af en værdi giver adgang til denne handling gennem sidebaren " +"for den givne model." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Opret en ny automatiseret automatisering" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Opsummering" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Mål model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Mål Model Navn" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Teknisk navn på bruger i datasæt" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"\"%(trigger_value)s\" %(trigger_label)s Kan kun bruges sammen med " +"\"%(state_value)s\" handlingstypen" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Handlingen vil blive afviklet hvis, og kun hvis, en af disse felter " +"opdateres. Hvis tomt, vil alle felter blive overvåget." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"Fejlen skete under afviklingen af den automatiserede handling\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Trigger" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Trigger dato" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Afvikle Felter" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Typer af server handlinger. De følgende værdier er tilgængelige:\n" +"- 'Kør Python kode': En blok python kode vil blive udført\n" +"- 'Opret': Opret et nyt datasæt med nye værdier\n" +"- 'Opdater et datasæt': Opdater værdierne i et datasæt\n" +"- 'Kør flere handlinger': Definer en handling der afvikler flere andre server handlinger\n" +"- 'Send email': Send automatisk en email (Diskuter)\n" +"- 'Tilføj følgere': Tilføj følgere til et datasæt (Diskuter)\n" +"- 'Opret næste aktivitet': Opret en aktivitet (Diskuter)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Anvendelse" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Brug 'Specifik bruger' for altid at tildele den samme bruger på næste " +"aktivitet. Brug 'Generisk bruger fra datasæt' for at specificere felt navnet" +" på brugeren som skal vælges i datasættet." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Anvend kalender" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Brug automatiserede handlinger til at automatisk afvikle handlinger for\n" +" diverse skærme. Eksempel: en potentiel kunde oprettet af en specifik bruger kan\n" +" automatisk sættes til et specifikt salgsteam, eller en\n" +" mulighed som stadig har afventende status efter 14 dage kan\n" +" udløve en automatisk påmindelses email." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Bruger felt navn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Værdi mapping" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Advarsel" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Ved udregning af en dags-baseret timet betingelse, er det muligt at bruge en" +" kalender til at udregne datoen, baseret på arbejdsdage." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Når der skal håndteres flere handlinger, er rækkefølgen for udførsel baseret" +" på rækkefølgesekvensen. Et lavt nummer betyder høj prioritet." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Hvornår skal betingelsen udløses.\n" +" Hvis til stede, vil det tjekkes af planlæggeren. Hvis tom, vil det tjekkes ved oprettelse og opdatering." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Sat til falsk, reglen vil blive skjult og bliver ikke udført." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Skriv python koden handlingen skal udføre. Nogle variabler er tilgængelig " +"til brug; hjælp vedrørende python udtryk findes under hjælp fanen." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Du kan spørge en administrator om at deaktivere eller rette denne " +"automatiske handling." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Du kan deaktivere denne automatiserede handling eller redigere den, for at " +"løse problemet." diff --git a/addons/base_automation/i18n/de.po b/addons/base_automation/i18n/de.po new file mode 100644 index 00000000..103461c4 --- /dev/null +++ b/addons/base_automation/i18n/de.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# f91684c3ff9ec3e650d5c8461e534581_686eae3 <449b96d9f63071f94d89e129677b83de_366193>, 2020 +# philku79 <philip.kuss@gmx.de>, 2020 +# Robert Förster <hello@suppliot.eu>, 2021 +# Chris Egal <sodaswed@web.de>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Chris Egal <sodaswed@web.de>, 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +"(ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Aktionsbeschreibung" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Aktionsbezeichnung" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Folgeaktion" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Aktionsart" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivität" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Aktivität Benutzertyp" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Kanäle hinzufügen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Abonnenten hinzufügen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Anzuwenden auf" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archiviert" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatische Aktion" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatische Aktionen" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automation" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Basisaktionsregel: Überprüfen und Ausführen" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Auf Basis von Formularanpassungen" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Auf Basis der erfassten Zeiten" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Abgrenzung vor Aktualisierung" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Verbindliches Modell" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Bindungstyp" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Bindende Ansichtstypen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Abhängige Aktion" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Abhängige Server-Aktion, die ausgeführt werden soll. Bitte beachten Sie, das" +" der letzte Rückgabewert der ausgeführten Aktion als globaler Rückgabewert " +"verwendet wird." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Tage" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Verzögerung nach dem Auslösedatum.\n" +"Sie können eine negative Zahl eingeben, wenn Sie eine Verzögerung vor dem Triggerdatum, wie z.B. das Senden einer Erinnerung 15 Minuten vor einer Besprechung." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Zeitspanne nach Auslösetermin" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Typ Zeitverzug" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Aufgabe deaktivieren" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Deaktivieren Sie diese automatisierte Aufgabe, um den Arbeitsablauf wieder zu ermöglichen.\n" +"Beachten Sie, dass alle Daten nach dieser Anpassung womöglich beschädigt sein können,\n" +"da eine diese Aufgabe mitunter wichtige Felder anpasst." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Fälligkeitsdatum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Fälligkeitstyp" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Aufgabe bearbeiten" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-Mail Vorlage" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Externe ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Gruppen" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Stunden" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Die ID für diese ist in einem xml File definiert." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Bei Verfügbarkeit muß diese Kondition vor Ausführung der Aktionsregel " +"erfüllt sein." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Falls vorhanden, muß diese Bedingung vor der Aktualisierung des Datensatzes " +"erfüllt werden." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Zuletzt ausgeführt" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Geringste Verzögerung Msg" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Link-Feld" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minuten" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modell" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Modellname" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Datenmodell für das Beleg erstellen / updaten . Setzen Sie dies Modul nur " +"für den Fall ein," + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Modell, auf dem die Server-Aktion läuft." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Monate" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Notiz" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Beachten Sie, dass diese Aktion bis zu %d Minuten nach ihrem Zeitplan " +"ausgelöst werden kann." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "OnChange Auslösende Felder" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Bei Erstellung" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Bei Erstellung und Aktualisierung" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Beim Löschen" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Beim Aktualisieren" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Optionaler Hilfetext für Benutzer mit der Beschreibung der Ansicht, deren " +"Verwendung und Aufgabe." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Geben Sie das Feld an, das zur Verknüpfung des neu erstellten Datensatzes " +"mit dem von der Serveraktion verwendeten Datensatz verwendet wird." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Code" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Verantwortlich" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Reihenfolge" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serveraktion" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Server-Aktionen" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Das Setzen eines Wertes macht diese Aktion in der Sidebar für das gegebene " +"Modell verfügbar." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Richten Sie eine neue automatisierte Aktion ein" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Zusammenfassung" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Ziel-Modell" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Ziel-Model Name" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Technischer Name des Benutzers im Datensatz" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"Der \"%(trigger_value)s\" %(trigger_label)s kann nur benutzt werden mit " +"dem\"%(state_value)s\" Aktionstyp" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Diese Aufgabe wird ausgelöst, wenn eines dieser Felder aktualisiert wird. " +"Ohne Angabe werden alle Felder auf Änderungen beobachtet." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"Der Fehler trat während des Ausführung der automatisierten Aufgabe auf." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Auslöser" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Auslösedatum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Trigger-Felder" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Verwendung" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Verwenden Sie einen \"Bestimmten Benutzer\", um bei der nächsten Aktivität " +"immer denselben Benutzer zugewiesen zu bekommen.Verwenden Sie 'Generierter " +"Benutzer aus Datensatz', um den Feldnamen des Benutzers anzugeben, der im " +"Datensatz ausgewählt werden soll." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Benutze Kalender" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Verwenden Sie automatische Aktionen, um automatisiert Aktionen für " +"unterschiedliche Modelle auszulösen. Zum Beispiel: Ein Lead, erstellt durch " +"einen bestimmten Benutzer kann automatisch einem Verkaufsteam zugewiesen " +"werden. Oder: Eine Chance die nach 14 Tagen noch den Status \"Wartet\" hat, " +"soll automatisiert eine Erinnerungs-E-Mail auslösen." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Benutzer Feld Name" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Wertzuordnung" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Warnung" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Zur Berechnung Ihrer täglichen Terminrestriktionen, können Sie einen " +"Kalender für die Terminberechnung auf Basis von Arbeitstagen nutzen." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Wichtig beim Umgang mit mehreren Aktionen. Die Reihenfolge der Ausführung " +"erfolgt nach aufsteigenden Nummern." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Wann die Bedingung ausgelöst werden sollte.\n" +" Falls vorhanden, wird der Zeitplaner die Überprüfung vornehmen. Falls leer, wird bei der Erstellung und Aktualisierung eine Überprüfung vorgenommen." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" +"Wenn diese Option deaktiviert wurde, wird die Regel ausgeblendet und auch " +"demnach nicht ausgeführt." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Schreiben Sie Python-Code, den die Aktion ausführen wird. Einige Variablen " +"stehen zur Verfügung. Hilfe zum Python-Ausdruck finden Sie auf der " +"Registerkarte \"Hilfe\"." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Sie können einen Administrator bitten die automatisierte Aufgabe zu " +"deaktivieren oder zu korrigieren." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Sie können diese automatisierte Aufgabe deaktivieren oder bearbeiten, um das" +" Problem zu beheben." diff --git a/addons/base_automation/i18n/el.po b/addons/base_automation/i18n/el.po new file mode 100644 index 00000000..ae7f1188 --- /dev/null +++ b/addons/base_automation/i18n/el.po @@ -0,0 +1,603 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2020\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Περιγραφή Δράσης" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Όνομα Ενέργειας" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Ενέργεια Να Κάνω" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Τύπος Ενέργειας" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Σε Ισχύ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Δραστηριότητα" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Προσθήκη Καναλιών" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Πρόσθεση Ακολούθων" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Αρχειοθετημένα" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Αυτοματοποιημένες ενέργειες" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Αυτοματισμός" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Με βάση Χρονική Συνθήκη" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Θυγατρικές Ενέργειες" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Θυγατρικές ενέργειες διακομιστή οι οποίες θα εκτελεστούν. Σημειωτέον ότι η " +"τελευταία επιστροφή των επιστρεφόμενων ενεργειών θα χρησιμοποιηθεί σαν " +"καθολική αξία επιστροφής." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Ημέρες" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Καθυστέρηση μετά την ημερομηνίας εναύσματος" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Τύπος καθυστέρησης" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Πρότυπο email" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Εξωτερικό Αναγνωριστικό" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Ομάδες" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Ώρες" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Ο κωδικός της δράσης αν ορίζεται σε XML αρχείο" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Εάν υπάρχει, η προϋπόθεση αυτή πρέπει να ικανοποιείται πριν από την εκτέλεση" +" του κανόνα δράσης." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Εάν παρουσιαστεί, αυτή η κατάσταση πρέπει να εκπληρωθεί πριν την ενημερωμέση" +" της εγγραφής" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Τελευταία εκτέλεση" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Λεπτά" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Μοντέλο" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Όνομα Υποδείγματος" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Υπόδειγμα για δημιουργία / ενημέρωση εγγραφών. Ορίστε αυτό το πεδίο μόνο για" +" καθορισμό διαφορετικού υποδείγματος από το βασικό υπόδειγμα." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Μήνες" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Σημείωση" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Στην Δημιουργία" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Κατά την Δημιουργία & Ενημέρωση" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Στην Διαγραφή" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Κατά την Ενημέρωση" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Προαιρετικό κείμενο βοήθειας για τους χρήστες με περιγραφή της προβολής " +"στόχου, όπως η χρήση και ο σκοπός της." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Code" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Υπεύθυνοι" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Ακολουθία" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Server Action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Ενέργειες Διακομιστή" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Περίληψη" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Υπόδειγμα Στόχος" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Όνομα Υποδείγματος Στόχου" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Έναυσμα" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Ημερομηνία Πυροδότησης" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Χρήση" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Χρήση Ημερολογίου" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Προσοχή" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Κατά τον υπολογισμό μιας χρονικής συνθήκης με βάση την ημέρα, είναι δυνατόν " +"να χρησιμοποιήσει ένα ημερολόγιο για να υπολογιστεί η ημερομηνία με βάση τις" +" εργάσιμες ημέρες." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Όταν αποεπιλεγεί, ο κανόνας είναι κρυμμένος και δεν θα εκτελεστεί." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/en_AU.po b/addons/base_automation/i18n/en_AU.po new file mode 100644 index 00000000..aae202d8 --- /dev/null +++ b/addons/base_automation/i18n/en_AU.po @@ -0,0 +1,480 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_action_rule +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-10-10 09:48+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/" +"language/en_AU/)\n" +"Language: en_AU\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: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "<b>Please choose the document type before setting the conditions.</b>" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_tree +msgid "Action Rule" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule +msgid "Action Rules" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Actions" +msgstr "Actions" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_active +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_followers +msgid "Add Followers" +msgstr "" + +#. module: base_action_rule +#: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act +#: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form +msgid "Automated Actions" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_id +msgid "Before Update Filter" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "Click to setup a new automated action rule." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "Closed" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Conditions" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_date +msgid "Create Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Delay After Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_range +msgid "" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_domain +msgid "Domain" +msgstr "Filter" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_server_action_ids +msgid "Examples: email reminders, call object service, etc." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Fields to Change" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_id +msgid "Filter" +msgstr "Filter" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_sequence +msgid "Gives the sequence order when displaying a list of rules." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Go to your \"Related Document Model\" page and set the filter parameters in " +"the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_id +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_id +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"In this same \"Search\" view, select the menu \"Save Current Filter\", enter " +"the name (Ex: Create the 01/01/2012) and add the option \"Share with all " +"users\"" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_last_run +msgid "Last Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_lead_id +msgid "Lead id" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model +msgid "Model" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_name +msgid "Name" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" +msgstr "New" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Deletion" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Update" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_partner_id +msgid "Partner" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model_id +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_user_id +msgid "Responsible" +msgstr "Responsible" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_name +msgid "Rule Name" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Select when the action must be run, and choose records and/or timing " +"conditions." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_server_action_ids +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server Actions" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server actions to run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_user_id +msgid "Set Responsible" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_state +msgid "Status" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_done +msgid "Test lead in state 'done'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_draft +msgid "Test lead in state 'draft'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_open +msgid "Test lead in state 'open'" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user " +"may\n" +" be automatically set to a specific sales team, or an\n" +" opportunity which still has status pending after 14 days " +"might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_user_id +msgid "User id" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_id +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_kind +msgid "When to Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"You may also use filters instead of choosing records. In order to create a " +"new filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_line_ids +msgid "unknown" +msgstr "" diff --git a/addons/base_automation/i18n/en_GB.po b/addons/base_automation/i18n/en_GB.po new file mode 100644 index 00000000..cad58e07 --- /dev/null +++ b/addons/base_automation/i18n/en_GB.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelled" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Partner" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Sequence" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Status" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/eo.po b/addons/base_automation/i18n/eo.po new file mode 100644 index 00000000..a241bc1e --- /dev/null +++ b/addons/base_automation/i18n/eo.po @@ -0,0 +1,584 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/es.po b/addons/base_automation/i18n/es.po new file mode 100644 index 00000000..8d545721 --- /dev/null +++ b/addons/base_automation/i18n/es.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Jesús Alan Ramos Rodríguez <alan.ramos@jarsa.com.mx>, 2021 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Descripción de la acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nombre de acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Acción a realizar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tipo de acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Activo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Actividad" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Tipo de actividad de usuario" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Añadir canales" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Añadir seguidores" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Aplicar en" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archivado" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Acción automatizada" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Acciones automatizadas" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatización" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Norma de acción básica: revisar y ejecutar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Basado en la modificación de formulario" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Basado en una condición de tiempo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Antes de actualizar el dominio" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Modelo vinculante" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Tipo de vínculo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Tipos de vista de enlace" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Acciones hijas" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Las acciones hijas de servidor que serán ejecutadas. Ten en cuenta que el " +"último valor devuelto será usado como valor de retorno global." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Días" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Retraso después de fecha de activación.\n" +"Puede colocar un número negativo si necesita un retraso antes de la \n" +"fecha de activación, como enviar un recordatorio de 15 minutos antes de una reunión." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Retraso después de la fecha de activación" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tipo retraso" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Desactivar acción" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Deshabilitar esta acción automatizada le permitirá continuar su flujo de trabajo\n" +" pero cualquier dato creado después de esto podría estar dañado,\n" +" ya que deshabilita efectivamente una personalización que puede establecer\n" +" campos importantes y / o obligatorios." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Fecha límite el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de límite" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Editar acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Plantilla de correo electrónico" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID externo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Campos que desencadenan el cambio." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupos" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Horas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID de la acción si está definida en el archivo XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Si está marcada esta casilla, la condición debe satisfacerse antes de " +"ejecutar la regla de acción." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Si está presente, esta condición debe satisfacerse antes de la actualización" +" del registro." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Última ejecución" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Mínimo de retraso del mensaje" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Campo de enlace" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutos" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modelo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nombre del modelo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modelo para la creación o actualización del registro. Establezca este campo " +"sólo para especificar un modelo diferente al modelo base." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Modelo sobre el que se aplica la acción de servidor." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Meses" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Nota" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Ten en cuenta que esta acción se puede activar hasta %d minutos después de " +"su programación." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Activar al modificar campos" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Al crear" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Al crear y actualizar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Al eliminar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Al actualizar" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Texto de ayuda opcional para los usuarios con una descripción de la vista " +"destino, como su uso y su propósito." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Proporciona el campo utilizado para vincular el registro recién creado en el" +" registro utilizado por la acción del servidor." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Código Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Acción de servidor" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Acciones de servidor" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Establecer un valor hace que esta acción esté disponible desde el menú " +"lateral del modelo." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Configurar una nueva automatización automatizada" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Resumen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Modelo destino" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nombre del modelo destino" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Nombre técnico del usuario en el registro" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"El \"%(trigger_value)s\" %(trigger_label)s solo se puede utilizar con el " +"tipo de acción \"%(state_value)s\"" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"La acción se activará si y solo si uno de estos campos se actualiza. Si está" +" vacío, se observan todos los campos." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"El error ocurrió durante la ejecución de la acción automatizada.\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Activador" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Fecha activación" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Campos de activación" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Tipo de acción de servidor. Los valores que están disponibles son:\n" +"- 'Ejecutar código Python': el bloque de código Python será ejecutado\n" +"- 'Crear o duplicar un nuevo registro': crea un nuevo registro con nuevos valores, o duplica uno existente en la base de datos\n" +"- 'Actualizar un registro': actualiza los valores de un registro\n" +"- 'Ejecutar varias acciones': define una acción que lanza otras acciones de servidor\n" +"- 'Enviar un correo electrónico': envía automáticamente un correo electrónico (Conversaciones)\n" +"- 'Añadir seguidores': añade seguidores a un registro (Conversaciones)\n" +"- 'Crear próxima actividad': crea una actividad (Conversaciones)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Uso" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Utiliza 'Usuario específico' para asignar siempre el mismo usuario en la " +"siguiente actividad. Utiliza 'Usuario genérico en el registro' para " +"especificar el nombre del campo del usuario para elegir en el registro." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Usar calendario" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Utiliza acciones automatizadas para activar acciones de forma automática para\n" +" Varias pantallas. Ejemplo: un cliente potencial creado por un usuario específico \n" +" puede configurarse automáticamente a un equipo de ventas específico, o una\n" +" oportunidad que todavía tiene estado pendiente después de 14 días podría\n" +" desencadenar un recordatorio automático por correo electrónico." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Nombre del campo de usuario" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapeo de valores" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Cuando se calcula una condición de tiempo basada en días, se puede utilizar " +"un calendario para calcular la fecha basada en días laborables." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Cuando se trabaja con múltiples acciones, el orden de ejecución se basa en " +"la secuencia. Los números bajos tienen mayor prioridad." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Cuándo debe activarse una condición.\n" +" Si se encuentra seleccionada, se revisará por el programador. Si se encuentra vacía, se revisará cuando se crea y cuando se actualice." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" +"Si no se encuentra seleccionado, la regla está oculta y no se ejecutará." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Escribe el código Python que ejecutará la acción. Algunas variables están " +"disponibles para su uso; hay ayuda disponible para la expresión de Python en" +" la pestaña de ayuda." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Puedes pedirle a un administrador que desactive o corrija esta acción " +"automatizada." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Puedes deshabilitar esta acción automatizada o editarla para resolver el " +"problema." diff --git a/addons/base_automation/i18n/es_BO.po b/addons/base_automation/i18n/es_BO.po new file mode 100644 index 00000000..26dd84a4 --- /dev/null +++ b/addons/base_automation/i18n/es_BO.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_CL.po b/addons/base_automation/i18n/es_CL.po new file mode 100644 index 00000000..f695f490 --- /dev/null +++ b/addons/base_automation/i18n/es_CL.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Nueva" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_CO.po b/addons/base_automation/i18n/es_CO.po new file mode 100644 index 00000000..72a2d206 --- /dev/null +++ b/addons/base_automation/i18n/es_CO.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado(a)" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Nuevo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Asociado" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_CR.po b/addons/base_automation/i18n/es_CR.po new file mode 100644 index 00000000..56fc55ac --- /dev/null +++ b/addons/base_automation/i18n/es_CR.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelada" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_DO.po b/addons/base_automation/i18n/es_DO.po new file mode 100644 index 00000000..785eb1c3 --- /dev/null +++ b/addons/base_automation/i18n/es_DO.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelada" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Nuevo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_EC.po b/addons/base_automation/i18n/es_EC.po new file mode 100644 index 00000000..13fad1f2 --- /dev/null +++ b/addons/base_automation/i18n/es_EC.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Fecha de modificación" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Ultima Actualización por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Actualizado en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Nuevo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_MX.po b/addons/base_automation/i18n/es_MX.po new file mode 100644 index 00000000..29744fff --- /dev/null +++ b/addons/base_automation/i18n/es_MX.po @@ -0,0 +1,650 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Descripción de la acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nombre de acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Acción a realizar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tipo de acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Activo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Actividad" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Tipo de actividad de usuario" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Añadir canales" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Añadir seguidores" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Aplicar en" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archivado" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Acción automatizada" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Acciones automatizadas" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatización" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Norma de acción básica: revisar y ejecutar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Basado en la modificación de formulario" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Basado en una condición de tiempo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Antes de actualizar el dominio" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Modelo vinculante" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Tipo de vínculo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Tipos de vista de enlace" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Acciones hijas" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Las acciones hijas de servidor que serán ejecutadas. Tenga en cuenta que el " +"último valor devuelto será usado como valor de retorno global." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Días" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Retraso después de fecha de activación.\n" +"Puede colocar un número negativo si necesita un retraso antes de la \n" +"fecha de activación, como enviar un recordatorio de 15 minutos antes de una reunión." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Retraso después de la fecha de activación" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tipo retraso" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Desactivar acción" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Deshabilitar esta acción automatizada le permitirá continuar su flujo de trabajo\n" +" pero cualquier dato creado después de esto podría estar dañado,\n" +" ya que deshabilita efectivamente una personalización que puede establecer\n" +" campos importantes y / o obligatorios." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Fecha límite el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de límite" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Editar acción" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Plantilla de correo electrónico" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID externo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Campos que desencadenan el cambio." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupos" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Horas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID de la acción si está definida en el archivo XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Si está marcada esta casilla, la condición debe satisfacerse antes de " +"ejecutar la regla de acción." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Si está presente, esta condición debe satisfacerse antes de la actualización" +" del registro." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Última ejecución" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Mínimo de retraso del mensaje" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Campo de enlace" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutos" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modelo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nombre del modelo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modelo para la creación o actualización del registro. Establezca este campo " +"sólo para especificar un modelo diferente al modelo base." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Modelo sobre el que se aplica la acción de servidor." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Meses" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Nota" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Ten en cuenta que esta acción se puede activar hasta %d minutos después de " +"su programación." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Activar al modificar campos" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Al crear" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Al crear y actualizar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Al eliminar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Al actualizar" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Texto de ayuda opcional para los usuarios con una descripción de la vista " +"destino, como su uso y su propósito." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Proporciona el campo utilizado para vincular el registro recién creado en el" +" registro utilizado por la acción del servidor." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Código Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Acción de servidor" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Acciones de servidor" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Establecer un valor hace que esta acción esté disponible desde el menú " +"lateral del modelo." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Configurar una nueva automatización automatizada" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Resumen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Modelo destino" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nombre del modelo destino" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Nombre técnico del usuario en el registro" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"El \"%(trigger_value)s\" %(trigger_label)s solo se puede utilizar con el " +"tipo de acción \"%(state_value)s\"" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"La acción se activará si y solo si uno de estos campos se actualiza. Si está" +" vacío, se observan todos los campos." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"El error ocurrió durante la ejecución de la acción automatizada.\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Activador" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Fecha activación" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Campos de activación" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Tipo de acción de servidor. Los valores que están disponibles son:\n" +"- 'Ejecutar código Python': el bloque de código Python será ejecutado\n" +"- 'Crear o duplicar un nuevo registro': se creará un nuevo registro con nuevos valores, o duplica uno existente en la base de datos\n" +"- 'Actualizar un registro': se actualizarán los valores de un registro\n" +"- 'Ejecutar varias acciones': se definirá una acción que lanza otras acciones de servidor\n" +"- 'Enviar un correo electrónico': se enviará automáticamente un correo electrónico (Conversaciones)\n" +"- 'Añadir seguidores': se añadirá seguidores a un registro (Conversaciones)\n" +"- 'Crear próxima actividad': se creará una actividad (Conversaciones)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Uso" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Utiliza 'Usuario específico' para asignar siempre el mismo usuario en la " +"siguiente actividad. Utiliza 'Usuario genérico en el registro' para " +"especificar el nombre del campo del usuario para elegir en el registro." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Usar calendario" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Utilice acciones automatizadas para activar acciones de forma automática para\n" +" varias pantallas. Ejemplo: un cliente potencial creado por un usuario específico \n" +" puede configurarse automáticamente a un equipo de ventas específico, o una\n" +" oportunidad que todavía tiene estado pendiente después de 14 días podría\n" +" desencadenar un recordatorio automático por correo electrónico." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Nombre del campo de usuario" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapeo de valores" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Cuando se calcula una condición de tiempo basada en días, se puede utilizar " +"un calendario para calcular la fecha basada en días laborables." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Cuando se trabaja con múltiples acciones, el orden de ejecución se basa en " +"la secuencia. Los números bajos tienen mayor prioridad." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Cuándo debe activarse una condición.\n" +" Si se encuentra seleccionada, se revisará por el programador. Si se encuentra vacía, se revisará cuando se crea y cuando se actualice." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" +"Si no se encuentra seleccionado, la regla está oculta y no se ejecutará." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Escribe el código Python que ejecutará la acción. Algunas variables están " +"disponibles para su uso; hay ayuda disponible para la expresión de Python en" +" la pestaña de ayuda." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Puedes pedirle a un administrador que desactive o corrija esta acción " +"automatizada." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Puedes deshabilitar esta acción automatizada o editarla para resolver el " +"problema." diff --git a/addons/base_automation/i18n/es_PE.po b/addons/base_automation/i18n/es_PE.po new file mode 100644 index 00000000..214a84ac --- /dev/null +++ b/addons/base_automation/i18n/es_PE.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Socio" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_PY.po b/addons/base_automation/i18n/es_PY.po new file mode 100644 index 00000000..1f1174b6 --- /dev/null +++ b/addons/base_automation/i18n/es_PY.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/es_VE.po b/addons/base_automation/i18n/es_VE.po new file mode 100644 index 00000000..a659dc20 --- /dev/null +++ b/addons/base_automation/i18n/es_VE.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelada" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/et.po b/addons/base_automation/i18n/et.po new file mode 100644 index 00000000..a4c11614 --- /dev/null +++ b/addons/base_automation/i18n/et.po @@ -0,0 +1,620 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Rivo Zängov <eraser@eraser.ee>, 2020 +# Martin Trigaux, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Egon Raamat <egon@avalah.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Marek Pontus, 2020 +# Martin Aavastik <martin@avalah.ee>, 2020 +# Piia Paurson <piia@avalah.ee>, 2020 +# Triine Aavik <triine@avalah.ee>, 2021 +# Martin Talts <martin.t@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Talts <martin.t@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Toimingu kirjeldus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Toimingu nimi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Toimingud, mida teha" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Toimingu tüüp" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktiivne" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Tegevus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Lisa kanaleid" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Lisa jälgijaid" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Kohalda" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arhiveeritud" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatiseeritud tegevus" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatiseeritud tegevused" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatiseerimine" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Baastegevuste reegel: kontrolli ja teosta" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Tugineb ankeedi muutmisel" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Tugineb ajastatud tingimusel" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Enne domeeni uuendamist" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Siduv mudel" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Siduv tüüp" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Alamtegevused" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Käivitatav alamserveri tegevus. Pange tähele, et tagastatav viimase toimingu" +" väärtust kasutatakse kui globaalset tagastatud väärtust." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Päevad" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Viivitus pärast käivituskuupäeva.\n" +" Võite sisestada negatiivse numbri kui vajate viivitust enne\n" +" käivituskuupäeva nagu meeldetuletuse saatmine 15 minutit enne." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Viivitus pärast käivituskuupäeva" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Viivituse tüüp" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Tähtaeg" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tähtaja liik" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-kirja näidis" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Väline ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupid" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Tunnid" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Tegevuse ID kui XML failis defineeritud" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Kui see on olemas, peab see tingimus olema täidetud enne tegevusreegli " +"täitmist." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Kui see on olemas, peab see tingimus olema täidetud enne kirje uuendamist." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Viimati jooksutatud" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud (kelle poolt)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutid" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Mudel" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Mudeli nimetus" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Kirjete loomise/uuendamise mudel. Määrakse see väli ainult erinevate kui " +"baasmudelite täpsustamiseks." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Mudelid, millel jooksutatakse serveri toiminguid." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Kuud" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Märkus" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Käivita väljad muutustel" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Loomisel" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Loomisel ja uuendamisel" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Kustutamisel" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Uuendamisel" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Valikuline abitekst kasutajatele koos sihtvaate kirjeldusega nagu selle " +"kasutamine ja eesmärgid." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Sisestage väli, mida kasutatakse serveritoimingu kasutatava kirje vastloodud" +" kirje linkimiseks." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Pythoni kood" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Vastutaja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Järjestus" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serveri toiming" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Serveri tegevused" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Väärtuse määramine muudab selle tegevuse mudeli küljeribal kättesaadavaks." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Kokkuvõte" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Target Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Target Modeli nimetus" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Päästik" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Päästiku kuupäev" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Kasutamine" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Kasuta kalendrit" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Väärtuste kaardistamine" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Hoiatus" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Arvutades päevapõhist ajatingimust on võimalik kasutada kalendrit, et " +"arvutada välja kuupäev tööpäevade alusel." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Kui tegemist on mitme tegevusega, siis nende käivitamise järjekord sõltub " +"järjestusest. Madalam arv vastab kõrgemale prioriteedile." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Millal peaks tingimus käivituma.\n" +" Kui olemas, siis kontrollitakse planeerijaga. Kui puudub, siis kontrollitakse loomisel ja uuendamisel." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Kui pole märgitud, siis reegel on peidetud ning seda ei käivitata." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Kirjuta phytoni kood, mis tegevus käivitatakse. Mõned muutujad on saadaval " +"kasutuseks, pythoni väljendi abi leiab abi vahekaardilt." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/eu.po b/addons/base_automation/i18n/eu.po new file mode 100644 index 00000000..d1bdae92 --- /dev/null +++ b/addons/base_automation/i18n/eu.po @@ -0,0 +1,599 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# ibinka lete <ilete@fpbidasoa.net>, 2021 +# Gorka Toledo <gorka.toledo@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Mikel Lizarralde <mikellizarralde@gmail.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# iaranburu <iaranburu@binovo.es>, 2021 +# Victor Laskurain <blaskurain@binovo.es>, 2021 +# mgalarza005 <mikelgalarza99@gmail.com>, 2021 +# Unai Muñoz <unaimunoz9@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Unai Muñoz <unaimunoz9@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Ekintzaren deskribapena" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Ekintzaren izena" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Egitekoa" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Ekintza mota" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktiboa" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Jarduera" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Kanalak gehitu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Jarraitzaileak gehitu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Aplikatu" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Artxibatua" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Ekintza automatizatua" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Akzio automatizatuak " + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizazioa" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Noiz sortua" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Egun" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Eposta txantiloia " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Kanpo ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Taldeak" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Ordu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Azkenengoz eguneratu zuena" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Azken eguneraketa noiz" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Eredua" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Ereduaren izena" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Hilabete" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Oharra" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Sortzen" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Eguneratzen" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Kodea" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Arduraduna" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sekuentzia" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Laburpena" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Erabilera" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Egutegia erabili" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Abisua" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/fa.po b/addons/base_automation/i18n/fa.po new file mode 100644 index 00000000..d0bd5612 --- /dev/null +++ b/addons/base_automation/i18n/fa.po @@ -0,0 +1,594 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# elaheh pourrezaie <elaheh.pourrezaie@hotmail.com>, 2020 +# سید محمد آذربرا <mohammadazarbara98@gmail.com>, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/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=2; plural=(n > 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "توضیحات کنش" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "نام کنش" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "کنش برای انجام" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "نوع کنش" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "فعال" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "فعالیت" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "نوع فعالیت کاربر" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "افزودن کانالها" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "اضافه کردن فالوور" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "اعمال روی" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "بایگانی شده" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "عمل خودکار" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "عملیات خودکار" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "اتوماسیون" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "قانون عمل پایه: بررسی و اجرا" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "بر اساس تغییرات فرم" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "بر اساس شرایط زمانی" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "قبل از بروز کردن دامنه" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "مدل الزامآور" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "نوع الزامآور" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "عملهای زیر دست" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "ایجاد توسط" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "روزها" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "تاخیر پس از روز راهاندازی" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "نوع تاخیر" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "قالب ایمیل" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "شناسه خارجی" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "گروهها" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "ساعتها" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "شناسه" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "آخرین اجرا" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "دقیقه" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "مدل" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "نام مدل" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"مدل برای ایجاد ثبت / به روز رسانی. این فیلد را فقط برای تعیین یک مدل متفاوت " +"از مدل پایه تنظیم کنید." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "ماهها" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "یادداشت" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "راهانداز در هنگام تغییر فبلدها" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "هنگام ایجاد" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "هنگام ایجاد و بروزرسانی" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "هنگام پاک کردن" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "هنگام بروزرسانی" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "کد پایتون" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "پاسخگو" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "دنباله" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "کنش سرور" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "کُنشهای سمت سرور" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "چکیده" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "رهاساز" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "تاریخ رهاساز" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "کاربرد" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "استفاده از گاهشمار" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "هشدار" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/fi.po b/addons/base_automation/i18n/fi.po new file mode 100644 index 00000000..2d32f714 --- /dev/null +++ b/addons/base_automation/i18n/fi.po @@ -0,0 +1,603 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2020 +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Jussi Lehto <jussi@gulfeo.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# Teemu Ahonen <teemu.ahonen@web-veistamo.fi>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Teemu Ahonen <teemu.ahonen@web-veistamo.fi>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Toiminnon kuvaus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Toiminnon nimi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Tehtävät" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Toiminnon tyyppi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktiivinen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Toimenpide" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Toiminnon käyttäjätyyppi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Lisää kanavat" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Lisää seuraajia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arkistoitu" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatisoitu toiminto" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatisoidut Toiminnot" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatisointi" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Perustuu ajastettuun ehtoon" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Alitason toimenpiteet" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Palvelintoimintojen alatoiminnot jotka suoritetaan. Huomioi että viimeistä " +"palautettua arvoa käytetään palautusarvona globaalisti." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Päivää" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Viive ajastetun päivämäärän jälkeen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Viivästyksen tyyppi" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Sähköpostin mallipohja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Ulkoinen ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Ryhmät" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Tunnit" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Toiminnon ID, jos on määritetty XML-tiedostossa" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Jos käytössä, niin tämän ehdon pitää täyttyä ennenkuin sääntö voidaan " +"suorittaa." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Jos käytössä, niin tämän ehdon pitää täyttyä ennen tietueen päivitystä." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Viimeisin suoritus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivitetty" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minuutit" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Malli" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Mallin nimi" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Kuukaudet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Muistiinpano" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Luonnin yhteydessä" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Luonnin ja päivityksen yhteydessä" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Päivityksen yhteydessä" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Vaihtoehtoinen ohjeteksti käyttäjälle jossa on kohdenäkymän kuvaus kuten " +"esim.käyttötarkoitus ja käyttöohje." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python-koodi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Vastuuhenkilö" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Järjestys" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Palvelintoiminto" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Palvelintoiminnot" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Yhteenveto" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Kohdemalli" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Liipaisin" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Liipaisupäivämäärä" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Käyttö" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Käytä kalenteria" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Käyttäjäkentän nimi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Arvojen kohdistus" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Varoitus" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Kun tätä ei ole valittu, sääntö on piilotettu ja sitä ei suoriteta" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/fo.po b/addons/base_automation/i18n/fo.po new file mode 100644 index 00000000..0b142075 --- /dev/null +++ b/addons/base_automation/i18n/fo.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Byrjað av" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Byrjað tann" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Vís navn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Seinast rættað tann" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Seinast dagført av" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Seinast dagført tann" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/fr.po b/addons/base_automation/i18n/fr.po new file mode 100644 index 00000000..120f7555 --- /dev/null +++ b/addons/base_automation/i18n/fr.po @@ -0,0 +1,659 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Xavier Symons <xsy@openerp.com>, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Nathan Grognet <ngr@odoo.com>, 2020 +# Celia Tydgat <cty@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Pierre Delacroix <pde@odoo.com>, 2021 +# Alexandra Jubert <aju@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alexandra Jubert <aju@odoo.com>, 2021\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Description de l'action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nom de l'action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Action à effectuer" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Type d'action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Actif" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Activité" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Type d'utilisateur de l'activité" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Ajouter des canaux" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Ajouter des abonnés" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Appliqué sur" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archivé" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Action Automatisée" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Actions automatisées" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatisation" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Règle d'action de base : vérification et exécution" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Basé sur un changement dans le formulaire" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "D'après une condition de temps" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Domaine avant la mise-à-jour" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Modèle de liaison" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Type de liaison" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Types de vues liées" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Actions filles" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Actions-serveur filles qui seront exécutées. Noter que la dernière valeur " +"d'action retournée sera utilisée comme valeur globale de retour." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Jours" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Délai après la date de déclenchement.\n" +" Vous pouvez mettre une valeur négative si vous avez besoin d'un délai avant la\n" +" date de déclenchement : envoyer un rappel 15 minutes avant une réunion, par exemple." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Délai après la date de déclenchement" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Type de délai" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Désactiver l'action" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"La désactivation de cette action automatisée vous permettra de poursuivre votre flux de travail, \n" +"mais toutes les données créées après cela pourraient être potentiellement corrompues,\n" +"car vous désactivez effectivement une personnalisation qui peut définir \n" +"des champs importants et/ou obligatoires." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Date d'échéance dans" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Date d'échéance" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Modifier l'action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Modèle d'email" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID Externe" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Groupes" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Heures" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Identifiant de l'action si elle est définie dans un fichier XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Si présente, la condition doit être satisfaite avant d'exécuter la règle " +"d'action" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Si présent, la condition doit être satisfaite avant la mise à jour de " +"l'enregistrement." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Dernière exécution" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Lier champ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutes" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modèle" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nom de modèle" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modèle pour la création / mise à jour d'un enregistrement. Renseigner ce " +"champ uniquement pour spécifier un modèle différent de celui du modèle de " +"base." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Modèle sur lequel se base l'exécution de l'action du serveur." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Mois" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Note" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Notez que cette action peut-être déclenchée jusqu'à %d minutes après sa " +"programmation." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Déclencheur des modifications sur les champs" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "À la création" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "À la création et en lors d'une mise à jour" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Lors de la suppression" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Lors d'une mise à jour" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Texte d'aide optionnel pour les utilisateurs décrivant la vue cible, son " +"utilisation et son but." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Indiquez le champ utilisé pour associer le nouvel enregistrement créé à " +"l'enregistrement utilisé par l'action du serveur." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Code Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Action du serveur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Actions-serveur" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Après qu'une valeur a été définie, cette action devient disponible dans la " +"barre latérale pour le modèle donné." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Configurez une nouvelle automatisation" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Résumé" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Modèle cible" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nom du modèle cible" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Nom technique de l'utilisateur sur l'enregistrement" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"Le \"%(trigger_value)s\" %(trigger_label)s ne peut être utilisé qu'avec le " +"type d'action \"%(state_value)s\"" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"L'action sera déclenchée si et seulement un de ces champs est mis-à-jour. Si" +" vide, tous les champs sont surveillés." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"L'erreur s'est produite lors de l'exécution de l'action automatisée\n" +"\"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Déclencheur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Date de déclenchement" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Déclencher champs" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Type d'action serveur. Les valeurs suivantes sont disponibles:\n" +"- 'Executer du code Python': un bloc de code python qui sera exécuté\n" +"- 'Créer': créer un nouvel enregistrement avec de nouvelles valeurs\n" +"- 'Mettre à jour un enregistrement': mettre à jour les valeurs d'un enregistrement\n" +"- 'Executer plusieurs actions': définir une action qui déclenche plusieurs autres actions serveur\n" +"- 'Envoyer E-Mail': envoyer un e-mail automatiquement (Discutez)\n" +"- 'Ajouter Abonnés': ajouter des abonnés à un enregistrement (Discutez)\n" +"- 'Créer une Nouvelle Activité': créer une activité (Discutez)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Usage" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Utilisez \"Utilisateur spécifique\" pour toujours assigner le même " +"utilisateur aux activités. Utilisez \"Utilisateur de l'enregistrement\" pour" +" spécifier le nom du champs permettant de sélectionner l'utilisateur de " +"l'enregistrement." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Utiliser le calendrier" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Utiliser des actions automatisées pour déclencher automatiquement des " +"actions pour différents écrans. Par exemple : une piste créée par un " +"utilisateur spécifique peut être automatiquement affectée à une Équipe de " +"Vente, ou une opportunité en attente depuis plus de 14 jours peut déclencher" +" un rappel automatique par email." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Nom du champ utilisateur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Correspondance des valeurs" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Avertissement" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Lors du calcul d'une condition basée sur les jours, il est possible " +"d'utiliser un calendrier pour calculer une date basée sur les jours ouvrés." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Pour de multiples actions, l'ordre d'exécution est fondé sur la séquence. Le" +" nombre le plus petit marque la plus haute priorité." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Cas où la condition doit être déclenchée.\n" +" Si renseigné, la valeur sera vérifiée par le planificateur de tâches. Si vide, la valeur sera vérifiée lors d'une création et d'une mise à jour." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Lorsque décoché, la règle est cachée et ne sera pas exécutée." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Ecrivez le code Python que l'action exécutera. Certaines variables sont " +"disponibles à l'utilisation; de l'aide sur les expressions Python est " +"disponible dans l'onglet Aide. " + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Vous pouvez demander à un administrateur de désactiver ou de corriger cette " +"action automatisée." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Vous pouvez désactiver cette action automatisée ou la modifier pour résoudre" +" l'incident." diff --git a/addons/base_automation/i18n/fr_BE.po b/addons/base_automation/i18n/fr_BE.po new file mode 100644 index 00000000..1d9ed426 --- /dev/null +++ b/addons/base_automation/i18n/fr_BE.po @@ -0,0 +1,480 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_action_rule +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-11-18 13:40+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_BE/)\n" +"Language: fr_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "<b>Please choose the document type before setting the conditions.</b>" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_tree +msgid "Action Rule" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule +msgid "Action Rules" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Actions" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_active +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_active +msgid "Active" +msgstr "Actif" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_followers +msgid "Add Followers" +msgstr "" + +#. module: base_action_rule +#: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act +#: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form +msgid "Automated Actions" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_id +msgid "Before Update Filter" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "Click to setup a new automated action rule." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Conditions" +msgstr "Conditions" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_date +msgid "Create Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Days" +msgstr "Jours" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Delay After Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_range +msgid "" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_domain +msgid "Domain" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_server_action_ids +msgid "Examples: email reminders, call object service, etc." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Fields to Change" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_id +msgid "Filter" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_sequence +msgid "Gives the sequence order when displaying a list of rules." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Go to your \"Related Document Model\" page and set the filter parameters in " +"the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Hours" +msgstr "Heures" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_id +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_id +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"In this same \"Search\" view, select the menu \"Save Current Filter\", enter " +"the name (Ex: Create the 01/01/2012) and add the option \"Share with all " +"users\"" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_last_run +msgid "Last Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_uid +msgid "Last Updated by" +msgstr "Derniere fois mis à jour par" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_date +msgid "Last Updated on" +msgstr "Dernière mis à jour le" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_lead_id +msgid "Lead id" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Minutes" +msgstr "Minutes" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model +msgid "Model" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_name +msgid "Name" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" +msgstr "Nouveau" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Deletion" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Update" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_partner_id +msgid "Partner" +msgstr "Partenaire" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model_id +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_name +msgid "Rule Name" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Select when the action must be run, and choose records and/or timing " +"conditions." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_server_action_ids +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server Actions" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server actions to run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_user_id +msgid "Set Responsible" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_state +msgid "Status" +msgstr "Statut" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_name +msgid "Subject" +msgstr "Sujet" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_done +msgid "Test lead in state 'done'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_draft +msgid "Test lead in state 'draft'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_open +msgid "Test lead in state 'open'" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user " +"may\n" +" be automatically set to a specific sales team, or an\n" +" opportunity which still has status pending after 14 days " +"might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_user_id +msgid "User id" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_id +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_kind +msgid "When to Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"You may also use filters instead of choosing records. In order to create a " +"new filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_line_ids +msgid "unknown" +msgstr "" diff --git a/addons/base_automation/i18n/fr_CA.po b/addons/base_automation/i18n/fr_CA.po new file mode 100644 index 00000000..204e47d9 --- /dev/null +++ b/addons/base_automation/i18n/fr_CA.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Annulé" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "Identifiant" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Partenaire" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Statut" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/gl.po b/addons/base_automation/i18n/gl.po new file mode 100644 index 00000000..fbb45b0d --- /dev/null +++ b/addons/base_automation/i18n/gl.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Creado o" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Estado" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/gu.po b/addons/base_automation/i18n/gu.po new file mode 100644 index 00000000..d62585f3 --- /dev/null +++ b/addons/base_automation/i18n/gu.po @@ -0,0 +1,657 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2018 +# Ranjit Pillai <rpi@odoo.com>, 2018 +# Turkesh Patel <turkesh4friends@gmail.com>, 2018 +# Dharmraj Jhala <dja@openerp.com>, 2018 +# Divya Pandya <dia@odoo.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:49+0000\n" +"PO-Revision-Date: 2018-10-08 06:49+0000\n" +"Last-Translator: Divya Pandya <dia@odoo.com>, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "કરવાનું" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__active +msgid "Active" +msgstr "સક્રિય" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "પ્રવૃત્તિ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "સ્વયંચાલિતકાર્યો(એકશન્સ)" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Automated Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Automated Rule Test" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "રદ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test__customer +msgid "" +"Check this box if this contact is a customer. It can be selected in sales " +"orders." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "બંધ થયેલ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_uid +msgid "Created by" +msgstr "બનાવનાર" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "દિવસો" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__display_name +msgid "Display Name" +msgstr "પ્રદર્શન નામ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "કલાક" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__id +msgid "ID" +msgstr "ઓળખ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "પ્રગતિમાં છે" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__lead_id +msgid "Lead" +msgstr "લીડ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "મિનીટો" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "નમુનો" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "મહિનાઓ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__name +msgid "Name" +msgstr "નામ" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "નવું" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "નોંધ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__partner_id +msgid "Partner" +msgstr "ભાગીદાર" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "અધુરુ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__priority +msgid "Priority" +msgstr "પ્રાથમિકતા" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record on " +"used by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +msgid "Scheduled Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "ક્રમ" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__state +msgid "Status" +msgstr "સ્થિતિ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__name +msgid "Subject" +msgstr "વિષય" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "સાર" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:87 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "વપરાશ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__user_id +msgid "User" +msgstr "વપરાશકર્તા" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:86 +#, python-format +msgid "Warning" +msgstr "ચેતવણી" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" diff --git a/addons/base_automation/i18n/he.po b/addons/base_automation/i18n/he.po new file mode 100644 index 00000000..497e11ab --- /dev/null +++ b/addons/base_automation/i18n/he.po @@ -0,0 +1,628 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# ExcaliberX <excaliberx@gmail.com>, 2020 +# Leandro Noijovich <eliel.sorcerer@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Ofir Blum <ofir.blum@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Ofir Blum <ofir.blum@gmail.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "תיאור הפעולה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "שם פעולה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "פעולה לביצוע" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "סוג פעולה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "פעיל" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "פעילות" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "סוג פעילות משתמש" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "הוסף ערוצים" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "הוסף עוקבים" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "החל על" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "בארכיון" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "פעולה אוטומטית" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "פעולות אוטומטיות" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "אוטומציה" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "כלל פעולה בסיסי: בדוק ובצע" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "מבוסס על שינוי צורה" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "מבוסס על תנאי מתוזמן" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "לפני עדכון הדומיין" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "מודל מחייב" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "סוג מחייב" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "סוגי תצוגה מחייבים" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "תתי פעולות" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"תתי פעולות שרת אשר יבוצעו. שים לב שערך הפעולה האחרון שהוחזר ישמש כערך חוזר " +"גלובלי." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "נוצר ע\"י" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "ימים" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"השהה לאחר תאריך הטריגר.\n" +" אתה יכול להזין מספר שלילי אם אתה זקוק להשהייה לפני \n" +" תאריך הטריגר, כמו למשל שליחת תזכורת 15 דקות לפני פגישה." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "השהה לאחר תאריך הטריגר" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "סוג עיכוב" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "תאריך יעד " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "סוג יעד" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "תבנית דוא\"ל" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "מזהה חיצוני" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "קבוצות" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "שעות" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "מזהה" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "מזהה הפעולה אם מוגדר בקובץ XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "אם קיים, תנאי זה חייב להיות מרוצה לפני ביצוע כלל הפעולה." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "אם קיים, מצב זה צריך להתקיים לפני עדכון הרשומה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "ריצה אחרונה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה ע\"י" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "דקות" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "דגם" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "שם מודל" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"מודל ליצירת/ עדכון רשומה. הגדר שדה זה רק כדי לציין מודל שונה ממודל הבסיס." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "מודל שבו פעולת השרת רצה." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "חודשים" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "הערה" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "בטריגר שינוי שדות" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "ביצירה" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "ביצירה ועדכון" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "במחיקה" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "בעדכון" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"טקסט עזרה אופציונלי עבור משתמשים עם תיאור תצוגת היעד, כגון השימוש והמטרה " +"שלו." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "קוד פייתון" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "אחראי" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "רצף" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "פעולת שרת" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "פעולות שרת" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "הגדרת ערך מאפשרת פעולה זו בסרגל הצד עבור המודל הנתון." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "הגדר אוטומציה אוטומטית חדשה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "תיאור" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "מודל יעד" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "השם הטכני של המשתמש ברשומה" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"ה \"%(trigger_value)s\" %(trigger_label)s ניתן לשימוש רק עם " +"\"%(state_value)s\" סוג פעולה" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"הפעולה תופעל אם ורק אם אחד מהשדות הללו מתעדכן. אם ריק, כל השדות נצפים." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "הפעלה" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "תאריך טריגר" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"סוג פעולת השרת. הערכים הבאים זמינים:\n" +"- 'בצע קוד פייתון': בלוק של קוד פייתון שיבוצע\n" +"- 'צור': צור רשומה חדשה עם ערכים חדשים\n" +"- 'עדכן רשומה': עדכן את ערכי הרשומה\n" +"- 'בצע מספר פעולות': הגדר פעולה שמפעילה מספר פעולות שרת אחרות\n" +"- 'שלח דוא\"ל': שלח דוא\"ל באופן אוטומטי (צ'אט)\n" +"- 'הוסף עוקבים': הוסף עוקבים לרשומה (צ'אט)\n" +"- 'צור פעילות הבאה': צור פעילות (צ'אט)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "שימוש" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"השתמש ב'משתמש מסוים' כדי לשייך תמיד לאותו משתמש בפעילות הבאה. השתמש ב'משתמש " +"כללי מרשומה 'כדי לציין את שם השדה של המשתמש לבחירה מהרשומה." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "השתמש בלוח שנה" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"השתמש בפעולות אוטומטיות כדי להפעיל פעולות אוטומטית עבור\n" +" מסכים שונים. דוגמה: ייתכן וליד שנוצר על ידי משתמש מסוים\n" +" יוגדר אוטומטית לצוות מכירות מסוים או\n" +" הזדמנות שעדיין בסטטוס ממתינה לאחר 14 יום עשויים\n" +" להפעיל דוא\"ל תזכורת אוטומטי." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "שם שדה משתמש" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "מיפוי ערך" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "אזהרה" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"בעת חישוב מצב מתוזמן מבוסס יום, ניתן להשתמש בלוח השנה כדי לחשב את התאריך " +"בהתבסס על ימי עבודה." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"כאשר מתמודדים עם פעולות מרובות, סדר ביצוע מבוסס על רצף. מספר נמוך פירושו " +"עדיפות גבוהה." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"מתי צריך להפעיל את התנאי.\n" +" אם קיים, ייבדק על ידי המתזמן. אם הוא ריק, ייבדק ביצירה ועדכון." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "כאשר לא מסומן, הכלל מוסתר ולא יבוצע." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"כתוב קוד פייתון שהפעולה תבצע. מספר משתנים זמינים לשימוש; עזרה בנוגע לביטוי " +"פייתון ניתנת בכרטיסייה עזרה." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/hi.po b/addons/base_automation/i18n/hi.po new file mode 100644 index 00000000..1cc409a3 --- /dev/null +++ b/addons/base_automation/i18n/hi.po @@ -0,0 +1,584 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/hr.po b/addons/base_automation/i18n/hr.po new file mode 100644 index 00000000..937df754 --- /dev/null +++ b/addons/base_automation/i18n/hr.po @@ -0,0 +1,599 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Tina Milas, 2020 +# Milan Tribuson <one.mile.code@gmail.com>, 2020 +# Igor Krizanovic <krizanovic.igor@gmail.com>, 2020 +# Bole <bole@dajmi5.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Opis akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Naziv akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Za napraviti" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Vrsta akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktivan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivnost" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Vrsta korisničke aktivnosti" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Dodaj kanal" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Dodaj sljedbenike" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Primjeni na" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arhivirano" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatska radnja" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatske akcije" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizacija" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Osnovno pravilo: provjeri i izvrši" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Temeljeno na izmjeni oblika" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Temeljeno na vremenskom uvjetu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Prije ažuriranja domene" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Podređene radnje" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dani/a" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Delay after trigger date" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tip kašnjenja" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Onemogući akciju" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Predložak e-maila" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Vanjski ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupe" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Sati" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID akcije je definiran u XML datoteci" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Zadnje pokretanje" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minute" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Naziv modela" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model za stvaranje zapisa/ažuriranje. Postavi ovo polje samo za određivanje " +"drugačijeg modela od osnovnog modela." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Mjeseci" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Bilješka" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Okidač pri izmjeni vrijednosti" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Pri kreiranju" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Pri kreiranju ili ažuriranju" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Prilikom brisanja" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Prilikom ažuriranja" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python kod" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Odgovoran" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serverske radnje" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Serverske radnje" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Sažetak" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Ciljani model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Naziv ciljanog modela" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Okidač" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Datum okidača" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Upotreba" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Koristi kalendar" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapiranje vrijednosti" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Ako nije označeno, pravilo je skriveno i neće se izvršiti." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/hu.po b/addons/base_automation/i18n/hu.po new file mode 100644 index 00000000..34d37469 --- /dev/null +++ b/addons/base_automation/i18n/hu.po @@ -0,0 +1,615 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Művelet leírása" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Művelet neve" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Elvégzendő művelet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Művelet típus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktív" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Tevékenység" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Csatornák hozzáadása" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Követők hozzáadása" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Alkalmazás itt" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archivált" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatizált művelet" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatizált műveletek" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizálás" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Űrlap módosítás alapján" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Időzített feltételek alapján" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Tartomány frissítése előtt" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Alárendelt műveletek" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Alárendelt szerver műveletek, amelyek végre lesznek hajtva. Vegye " +"figyelembe, hogy az utolsó művelet visszatérő értékét használja fel, mint " +"globális visszatérő érték." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Nap" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"A emlékeztető dátumának késleltetése.\n" +" Negatív számot is írhat ha az emlékeztető kapcsolására az\n" +" emlékeztető ideje előtt van szüksége, mint emlékeztető küldése 15 perccel a találkozó előtt." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Késleltetés az indítás dátuma után" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Késedelem típusa" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Művelet letiltása" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Esedékes" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Esedékesség típusa" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Művelet szerkesztése" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-mail sablon" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Külső azonosító" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Csoportok" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "óra" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "Azonosító" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "A művelet azonosítója, ha meg van határozva az XML fájlban" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Ha fellelhető, akkor ennek a feltételnek teljesülnie kell a műveleti szabály" +" végrehajtása előtt." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Ha létezik, ennek a feltételnek teljesülnie kell a rekord frissítése előtt." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Utolsó futás" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Frissítve " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Hivatkozás mező" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Perc" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modell" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Modell név" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modell rekord készítéséhes / frissítéséhez. Csak akkor állítsa be, ha az " +"alap modelltől eltérő modellt szeretne használni." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Hónap" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Megjegyzés" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Mezők megváltoztatásakor kapcsol" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Létrehozáskor" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Létrehozáskor és frissítéskor" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Törléskor" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Frissítéskor" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Opcionális segédszöveg felhasználóknak. Tartalmaz egy leírást a célnézetről," +" úgy mint a használata és a célja." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python kód" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Felelős" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sorszám" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Szerver művelet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Szerver műveletek" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Összefoglalás" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Cél modell" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "A cél modell neve" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "A felhasználó technikai neve a bejegyzésben" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Indítás" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Indítási dátum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Használat" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Használja a naptárat" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Érték leképezése" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Figyelmeztetés" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Ha egy nap-alapú időzített feltételt számol, akkor lehetősége van naptárat " +"használni a munkanapokon alapuló dátum kiszámításhoz." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Ha tömeges műveletekkel van dolgunk, az elvégzési sorrend a sorszámon " +"alapul. Alacsony szám magasabb prioritást jelent." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Mikor kell a feltételeket állítani.\n" +" Ha elérhető, az ütemező jelöli ki. Ha üres, a frissítés létrehozásakor lesz kijelölve." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Ha nincs bejelölve, a szabály eltüntetett és nem végrehajtott." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Megkérhet egy adminisztrátort, hogy tiltsa le vagy javítsa ki ezt az " +"automatizált műveletet." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Letilthatja ezt az automatizált műveletet, vagy szerkesztheti, hogy " +"orvosolja a problémát." diff --git a/addons/base_automation/i18n/id.po b/addons/base_automation/i18n/id.po new file mode 100644 index 00000000..a405bc43 --- /dev/null +++ b/addons/base_automation/i18n/id.po @@ -0,0 +1,599 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020 +# whenwesober, 2020 +# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Deskripsi Tindakan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nama Tindakan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Tindakan yang Akan DIlakukan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Jenis Tindakan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktif" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivitas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Tambah Saluran" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Tambah Pengikut" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Diarsipkan" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Tindakan Otomatis" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Otomatisasi" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Hari" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Template Email" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID Eksternal" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Kelompok" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Jam" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID tindakan jika didefinisikan dalam file XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Terakhir diperbarui oleh" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Terakhir diperbarui pada" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Menit" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nama Model" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Bulan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Catatan" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Kode Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Penanggung Jawab" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Urutan" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Tindakan Server" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Menetapkan sebuah nilai membuat tindakan ini menjadi tersedia pada bagan " +"sisi untuk model tersebut." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Ringkasan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Penggunaan" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Peringatan" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Tulis kode Python untuk tindakan yang akan diproses. Beberapa variabel sudah" +" tersedia untuk digunakan; bantuan untuk ekspresi python dapat dilihat pada " +"tab bantuan." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/is.po b/addons/base_automation/i18n/is.po new file mode 100644 index 00000000..f021cd97 --- /dev/null +++ b/addons/base_automation/i18n/is.po @@ -0,0 +1,664 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson <biggboss83@gmail.com>, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:16+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Action Description" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Heiti aðgerðar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Action To Do" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Action Type" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__active +msgid "Active" +msgstr "Virkur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Virkni" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Sjálfvirkar aðgerðir" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Automated Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Automated Rule Test" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automation" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Afpöntuð" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test__customer +msgid "" +"Check this box if this contact is a customer. It can be selected in sales " +"orders." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Child Actions" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Create/Write Target Model" +msgstr "Create/Write Target Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_uid +msgid "Created by" +msgstr "Búið til af" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_date +msgid "Created on" +msgstr "Stofnað þann" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "Dagar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__deadline +msgid "Deadline" +msgstr "Deadline" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__display_name +msgid "Display Name" +msgstr "Nafn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Email Template" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "External ID" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "Hours" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__id +msgid "ID" +msgstr "Auðkenni" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "Í vinnslu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__customer +msgid "Is a Customer" +msgstr "Er viðskiptavinur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__date_action_last +msgid "Last Action" +msgstr "Last Action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test____last_update +msgid "Last Modified on" +msgstr "Síðast breytt þann" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_uid +msgid "Last Updated by" +msgstr "Síðast uppfært af" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_date +msgid "Last Updated on" +msgstr "Síðast uppfært þann" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__lead_id +msgid "Lead" +msgstr "Ábending" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__line_ids +msgid "Line" +msgstr "Line" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link using field" +msgstr "Link using field" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "Mínútur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Model Description" +msgstr "Lýsing viðbótar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Model Name" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "Months" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__name +msgid "Name" +msgstr "Nafn" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Nýtt" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Athugasemd" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__partner_id +msgid "Partner" +msgstr "Viðskipta aðili" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "Í bið" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__priority +msgid "Priority" +msgstr "Forgangur" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record on " +"used by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Code" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "Remove the contextual action related to this server action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__user_id +msgid "Responsible" +msgstr "Ábyrgðaraðili" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +msgid "Scheduled Action" +msgstr "Scheduled Action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Runa" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Server Action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Server Actions" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__state +msgid "Status" +msgstr "Staða" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__name +msgid "Subject" +msgstr "Subject" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Samantekt" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:87 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__user_id +msgid "User" +msgstr "Notandi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Value Mapping" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:86 +#, python-format +msgid "Warning" +msgstr "Viðvörun" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" diff --git a/addons/base_automation/i18n/it.po b/addons/base_automation/i18n/it.po new file mode 100644 index 00000000..292ed868 --- /dev/null +++ b/addons/base_automation/i18n/it.po @@ -0,0 +1,643 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Francesco Garganese <francesco.garganese@aeromnia.aero>, 2020 +# Martin Trigaux, 2020 +# Matteo Boscolo <matteo.boscolo.76@gmail.com>, 2020 +# Paolo Valier, 2020 +# David Minneci <david@numeko.it>, 2020 +# Léonie Bouchat <lbo@odoo.com>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Descrizione azione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nome azione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Azione da eseguire" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tipo azione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Attivo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Attività" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Tipo utente per attività" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Aggiungi canali" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Aggiungi follower" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Applica a" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "In archivio" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Azione automatica" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Azioni automatiche" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automazione" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Regola azione di base: verifica e attuazione" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Basato su modifica del modulo" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Basato su condizione temporale" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Dominio prima dell'aggiornamento" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Modello di vincolo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Tipo di vincolo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Tipo di vista vincolata" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Azioni secondarie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Giorni" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Termine dopo la data di attivazione.\n" +" Puoi anche mettere un numero negativo se hai bisogno di un termine prima\n" +" della data di attivazione: ad esempio, inviare un promemoria 15 minuti prima di una riunione." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Ritardo dopo Data Programmata" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tipologia ritardo" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Disattiva azione" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Scadenza tra" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo di scadenza" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Modifica azione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Modello e-mail" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID esterno" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Gruppi" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Ore" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID dell'azione, se definita in un file XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Se presente, questa condizione deve essere soddisfatta prima dell'esecuzione" +" della regola." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Se presente, questa condizione deve essere soddisfatta prima " +"dell'aggiornamento del record." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Ultima esecuzione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minuti" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modello" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nome modello" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modello per la creazione/l'aggiornamento di record. Attiva questo campo solo" +" per specificare un modello diverso dal modello di base." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Modello sul quale viene eseguita l'azione server." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Mesi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Nota" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Attivatore delle modifiche sui campi" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Su creazione" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Su creazione e aggiornamento" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "All'eliminazione" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "All'aggiornamento" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Testo di aiuto opzionale per gli utenti con una descrizione della " +"visualizzazione, come il suo utilizzo e lo scopo." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Codice Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsabile" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sequenza" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Azione server" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Azioni server" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Quando un valore viene definito, questa azione diventa disponibile nella " +"barra laterale per il modello dato." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Imposta una nuova automatizzazione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Riepilogo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Modello obiettivo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nome modello obiettivo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Nome tecnico dell'utente nel record" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"Il \"%(trigger_value)s\" %(trigger_label)s può solo essere utilizzato con il" +" tipo di azione \"%(state_value)s\" " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"Errore rilevato durante l'esecuzione dell'azione automatica\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Attivazione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Data attivazione" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Tipologia azione server. Sono disponibili i seguenti valori:\n" +"- \"Esegui codice python\": esegue un blocco di codice python\n" +"- \"Crea\": crea un nuovo record con nuovi valori\n" +"- \"Aggiorna record\": aggiorna i valori di un record\n" +"- \"Esegui alcune azioni\": definisce un'azione che attiva altre azioni server\n" +"- \"Invia e-mail\": invia una e-mail in modo automatico (Comunicazioni)\n" +"- \"Aggiungi follower\": aggiunge follower a un record (Comunicazioni)\n" +"- \"Crea prossima attività\": crea un'attività (Comunicazioni)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Utilizzo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Usare \"Utente specifico\" per assegnare sempre lo stesso utente " +"all'attività successiva. Usare \"Utente generico dal record\" per " +"specificare il nome campo per scegliere l'utente nel record." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Utilizza calendario" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Utilizzare azioni automatiche per attivare automaticamente le azioni per\n" +" diverse schermate. Esempio: un lead creato da un utente specifico può\n" +" essere assegnato automaticamente ad un team di vendita specifico, oppure\n" +" un'opportunità ancora in attesa dopo 14 giorni potrebbe\n" +" attivare una email di promemoria automatica." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Nome campo utente" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Corrispondenza di valori" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Avviso" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Quando si calcola una condizione temporale bassata sul giorno è possibile " +"utilizzare un calendario per calcolare la data basandosi sui giorni " +"lavorativi" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Per le azioni multiple, l'ordine di esecuzione è basato sulla sequenza. Un " +"numero piccolo indica alta priorità." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Attivazione della condizione\n" +" Se il campo è compilato, il valore sarà controllato dal pianificatore. Se il campo è vuoto, il valore sarà controllato durante la creazione e l'aggiornamento. " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Se non selezionata, la regola è nascosta e non viene eseguita." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Scrivi un codice Python che l'azione eseguirà. Alcune variabili sono " +"disponibili per l'uso. Un aiuto sull'espressione Python è dato nella scheda " +"Aiuto." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Per disattivare o correggere l'azione automatica è possibile contattare un " +"amministratore." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Per risolvere il problema è possibile disattivare o modificare l'azione " +"automatica." diff --git a/addons/base_automation/i18n/ja.po b/addons/base_automation/i18n/ja.po new file mode 100644 index 00000000..8fa0b1a4 --- /dev/null +++ b/addons/base_automation/i18n/ja.po @@ -0,0 +1,620 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Shigekazu N. <shigekazu.noka@gmail.com>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# Yoshi Tashiro (Quartile) <tashiro@roomsfor.hk>, 2020 +# Noma Yuki, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Noma Yuki, 2021\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "アクション説明" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "アクション名" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "ToDo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "アクションタイプ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "有効" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "活動" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "活動ユーザタイプ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "チャネルを追加" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "フォロワーを追加" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "適用対象" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "アーカイブ済" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "自動アクション" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "自動アクション" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "自動化" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "基本アクションルール:チェックして実行する" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "フォーム更新基準" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "時間基準" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "更新前ドメイン" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "結合モデル" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "結合タイプ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "結合ビュータイプ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "子アクション" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "実行される子サーバー・アクション。最後のリターンは、アクション値は、グローバル戻り値として返され使用されることに注意してください。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "作成日" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "日" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"トリガー日後の遅延。\n" +"会議の15分前にリマインダを送信するなど、トリガの日付の前に遅延が必要な場合は、負の数値を入力できます。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "トリガ日後待ち時間" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "遅延タイプ" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "アクションの無効化" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"この自動化されたアクションを無効にすると、ワークフローを継続できます\n" +" ただし、この後に作成されたデータは破損する可能性があります\n" +" 重要および/または必須フィールドを設定するカスタマイズを無効にしているためです。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "期日" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "期限タイプ" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "アクションを編集" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Eメールテンプレート" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "外部ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "変更があると発動する動作をトリガーするフィールド。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "グループ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "時間" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "XMLファイルで定義されている場合、アクションのID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "存在する場合、この条件は、アクションルールを実行する前に満たされなければなりません。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "存在する場合、この条件は、レコードの更新前に満たされなければなりません。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "最終実行" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "最小遅延メッセージ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "リンク領域" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "分" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "モデル" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "モデル名" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "レコード作成/更新のためのモデル。ベースモデルとは異なるモデルを指定するだけで、このフィールドを設定します。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "サーバアクションが実行されるモデル" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "月" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "ノート" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "このアクションは、スケジュールから最大%d分後にトリガーできます。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "オンチェンジ項目トリガ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "作成時" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "作成時および更新時" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "削除時" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "更新時" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "ユーザのために、用途や目的といった目的となるビューの説明を伴った任意のヘルプテキスト" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "サーバーアクションで使用されるレコードに新しく作成されたレコードをリンクするために使用されるフィールドを指定します。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Pythonコード" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "担当者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "付番" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "サーバアクション" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "サーバアクション" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "値を設定すると、特定のモデルのサイドバーでこのアクションを使用できるようになります。" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "新しい自動化をセットアップする" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "サマリ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "対象モデル" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "対象モデル名" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "レコード上のユーザーのテクニカル名" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr " \"%(trigger_value)s\" %(trigger_label)s は \"%(state_value)s\" 動作タイプとのみ使えます" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "これらのフィールドの1つが更新された場合にのみ、アクションがトリガーされます。空の場合、すべてのフィールドが監視されます。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"自動化されたアクションの実行中にエラーが発生しました\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "トリガー" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "トリガ日" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "トリガー領域" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"サーバーアクションのタイプ。次の値を使用できます。\n" +"-'Pythonコードの実行':Pythonコードのブロックが実行される\n" +"-'作成':新しい値で新しいレコードを作成します\n" +"-'レコードの更新':レコードの値を更新します\n" +"-'複数のアクションを実行する':他の複数のサーバーアクションをトリガーするアクションを定義します\n" +"-'メールを送信':自動的にメールを送信します(ディスカッション)\n" +"-'フォロワーの追加':レコードにフォロワーを追加します(ディスカッション)\n" +"-'次のアクティビティの作成':アクティビティの作成(ディスカッション)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "用途" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"'特定のユーザー'を使用して、次のアクティビティで常に同じユーザーを割り当てます。 'Generic User From " +"Record'を使用して、レコードで選択するユーザーのフィールド名を指定します。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "カレンダを使用" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"自動アクションを利用して様々な画面の挙動を自動的にトリガーします\n" +" 例:特定のユーザーによって発生したリードを特定の営業チーム\n" +" に自動的に設定することができます。\n" +" あるいはは14日後もステータスが保留になっている場合は\n" +" 自動リマインダーメールをトリガーすることもできます。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "ユーザ領域名" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "値マッピング" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "日ベースのタイミング条件を計算する場合、営業日に基づいて日付を計算するために、カレンダーを使用することが可能です。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "複数のアクションを扱う場合、実行順序は、シーケンスに基づいています。数値が小さいほどが高い優先順位を意味します。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"条件をトリガする必要がある場合、\n" +" 存在する場合、スケジューラによってチェックされます。空の場合は、作成および更新時にチェックされます。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "チェックを外すと、ルールが隠され、実行できません。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"アクションが実行するPythonコードを記述します。一部の変数を使用できます; Pythonの表現に関するヘルプは、ヘルプタブに表示されます。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "この自動化されたアクションを無効にするか修正するように管理者に依頼できます。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "この自動化されたアクションを無効にするか、編集して問題を解決できます。" diff --git a/addons/base_automation/i18n/ka.po b/addons/base_automation/i18n/ka.po new file mode 100644 index 00000000..7bc6cb01 --- /dev/null +++ b/addons/base_automation/i18n/ka.po @@ -0,0 +1,596 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Saba Khmaladze <skhmaladze@uglt.org>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# Gizo Kobakhidze <040168@gmail.com>, 2021 +# Gvantsa Gvinianidze <gvantsa@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Gvantsa Gvinianidze <gvantsa@live.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "ქმედების განმარტება" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "ქმედების სახელი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "გასაკეთებელია" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "ქმედების ტიპი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "აქტიური" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "აქტივობა" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "მიმდევრები" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "დაარქივებული" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "ავტომატური ქმედება" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "ავტომატიზირებული ქმედებები" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "შემქმნელი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "შექმნის თარიღი" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "დღე" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "გარე იდენტიფიკატორი" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "ჯგუფები" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "საათი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "ბოლოს განაახლა" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "ბოლოს განახლდა" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "წუთები" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "მოდელი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "მოდელის სახელი" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "თვეები" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "შენიშვნა" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"სასურველი დახმარების ტექსტი მომხმარებლებისთვის სამიზნე ხედის აღწერით, მათ " +"შორის მიზნობრიობა და დანიშნულება." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python-ის კოდი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "პასუხისმგებელი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "მიმდევრობა" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "სერვერის ქმედება" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "სერვერის ქმედებები" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "შეჯამება" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "ტრიგერი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "ტრიგერის თარიღი" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "გაფრთხილება" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/kab.po b/addons/base_automation/i18n/kab.po new file mode 100644 index 00000000..ecceecf0 --- /dev/null +++ b/addons/base_automation/i18n/kab.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Ifsax" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Yerna-t" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Yerna di" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "Asulay" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Aleqqem aneggaru di" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Aleqqem aneggaru sɣuṛ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Aleqqem aneggaru di" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Amendid" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Agzum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Addad" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/kk.po b/addons/base_automation/i18n/kk.po new file mode 100644 index 00000000..24cfbec6 --- /dev/null +++ b/addons/base_automation/i18n/kk.po @@ -0,0 +1,479 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_action_rule +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-10-10 09:48+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "<b>Please choose the document type before setting the conditions.</b>" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_tree +msgid "Action Rule" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule +msgid "Action Rules" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Actions" +msgstr "Әрекеттер" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_active +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_active +msgid "Active" +msgstr "Белсенді" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_followers +msgid "Add Followers" +msgstr "" + +#. module: base_action_rule +#: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act +#: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form +msgid "Automated Actions" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_id +msgid "Before Update Filter" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "Click to setup a new automated action rule." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Conditions" +msgstr "Шарттары" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_date +msgid "Create Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_uid +msgid "Created by" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_date +msgid "Created on" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Days" +msgstr "күн" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Delay After Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_range +msgid "" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_domain +msgid "Domain" +msgstr "Домен" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_server_action_ids +msgid "Examples: email reminders, call object service, etc." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Fields to Change" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_id +msgid "Filter" +msgstr "Сүзгі" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_sequence +msgid "Gives the sequence order when displaying a list of rules." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Go to your \"Related Document Model\" page and set the filter parameters in " +"the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Hours" +msgstr "Сағат" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_id +msgid "ID" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_id +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_id +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"In this same \"Search\" view, select the menu \"Save Current Filter\", enter " +"the name (Ex: Create the 01/01/2012) and add the option \"Share with all " +"users\"" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_last_run +msgid "Last Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_lead_id +msgid "Lead id" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Minutes" +msgstr "Минут" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model +msgid "Model" +msgstr "Түрі" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Айлары" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_name +msgid "Name" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Deletion" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Update" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_partner_id +msgid "Partner" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model_id +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_name +msgid "Rule Name" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Select when the action must be run, and choose records and/or timing " +"conditions." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_sequence +msgid "Sequence" +msgstr "Тізбек" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_server_action_ids +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server Actions" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server actions to run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_user_id +msgid "Set Responsible" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_state +msgid "Status" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_name +msgid "Subject" +msgstr "Нысаны" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_done +msgid "Test lead in state 'done'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_draft +msgid "Test lead in state 'draft'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_open +msgid "Test lead in state 'open'" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user " +"may\n" +" be automatically set to a specific sales team, or an\n" +" opportunity which still has status pending after 14 days " +"might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_user_id +msgid "User id" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_id +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_kind +msgid "When to Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"You may also use filters instead of choosing records. In order to create a " +"new filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_line_ids +msgid "unknown" +msgstr "" diff --git a/addons/base_automation/i18n/km.po b/addons/base_automation/i18n/km.po new file mode 100644 index 00000000..f47444aa --- /dev/null +++ b/addons/base_automation/i18n/km.po @@ -0,0 +1,621 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Chan Nath <channath@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "ការពិពណ៌នាសកម្មភាព" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "ឈ្មោះសកម្មភាព" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "តាមដានសកម្មភាព" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "ប្រភេទសកម្មភាព" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "សកម្ម" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "សកម្មភាព" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "ប្រភេទសកម្មភាពត្រូវប្រើប្រាស់" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "បន្ថែមប៉ុស្ត៌៏" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "បន្ថែមការតាមដាន" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "អនុវត្តលើ" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "ទុកជាឯកសារ" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "សកម្មភាពស័យប្រវត្ត" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "សម្មភាពស្វ័យប្រវត្ត" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "ស្វ័យប្រវត្តិកម្ម" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "វិធានសកម្មភាពមូលដ្ឋាន: ពិនិត្យនិងអនុវត្ត" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "ដោយផ្អែកលើការកែប្រែទម្រង់" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "ដោយផ្អែកលើពេលវេលាកំណត់" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "មុនពេលធ្វើឱ្យទាន់សម័យដែន" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "គំរូចង" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "ប្រភេទគំរូ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "សកម្មភាពកេ្មង" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"សកម្មភាពម៉ាស៊ីនមេកុមារដែលនឹងត្រូវបានប្រតិបត្តិ។ " +"ចំណាំថាការត្រឡប់មកវិញត្រឡប់មកវិញចុងក្រោយតម្លៃសកម្មភាពនឹងត្រូវបានប្រើជាតម្លៃត្រឡប់សកល។" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "បង្កើតដោយ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "បង្កើតនៅ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "ថ្ងៃ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"ពន្យាពេលក្រោយកាលបរិច្ឆេទគន្លឹះ។ " +"អ្នកអាចដាក់លេខអវិជ្ជមានប្រសិនបើអ្នកត្រូវការការពន្យាពេលមុនពេល" +" កាលបរិចេ្ឆទដូចការផ្ញើរការរំលឹក 15 " +"នាទីមុនការប្រជុំ។" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "ការពន្យារពេលបន្ទាប់ពីកាលបរិច្ឆេទ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "ប្រភេទការពន្យារពេល" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "កាលបរិច្ឆេទខាងក្នុង" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "ប្រភេទត្រឹមត្រូវ" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "គំរូអ៊ីម៉ែល" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "អត្តលេខខាងក្រៅ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "ម៉ោង" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "អត្តសញ្ញានសកម្មភាពប្រសិនប្រើវានៅក្នុងឯកសារXML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "ប្រសិនបើមានវត្តមានលក្ខខណ្ឌនេះត្រូវតែពេញចិត្តមុនពេលអនុវត្តវិធានការ។" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"ប្រសិនបើមានវត្តមានលក្ខខណ្ឌនេះត្រូវតែពេញចិត្តមុនពេលធ្វើបច្ចុប្បន្នភាពកំណត់ត្រា។" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "ដំណើរការចុងក្រោយ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "កំណត់ហេតុ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "ម៉ូដែល" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "ឈ្មោះម៉ូដែល" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"គំរូសម្រាប់បង្កើតកំណត់ត្រា / ធ្វើបច្ចុប្បន្នភាព។ " +"កំណត់វាលនេះតែដើម្បីបញ្ជាក់ម៉ូដែលខុសគ្នាជាងគំរូមូលដ្ឋាន។" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "ម៉ូដែលដែលសកម្មភាពម៉ាស៊ីនមេដំណើរការ។" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "ខែ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "កំណត់សម្គាល់" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "នៅលើការផ្លាស់ប្តូរវាលការកេះ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "ការបង្កើតលើ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "ការបង្កើតទៅលើ និងការធ្វើបច្ចប្បន្នភាព" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "ការលុបទៅលើ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "ការធ្វើបច្ចុប្បន្នភាព" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"អត្ថបទជំនួយស្រេចចិត្តសម្រាប់អ្នកប្រើដែលមានការពិពណ៌នាអំពីទិដ្ឋភាពគោលដៅដូចជាការប្រើប្រាស់និងគោលបំណងរបស់វា។" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "កូដភូតុន" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "ការទទួលខុសត្រូវ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "លំដាប់" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "សកម្មភាពម៉ាស៊ីនបម្រើ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "សកម្មភាពប្រើ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"ការកំណត់តម្លៃធ្វើឱ្យសកម្មភាពនេះមាននៅក្នុងរបារចំហៀងសម្រាប់ម៉ូដែលដែលបានផ្តល់ឱ្យ។" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "រៀបចំស្វ័យប្រវត្តិកម្មស្វ័យប្រវត្តិថ្មី" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "សង្ខេប" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "ម៉ូដែលក្រុមគោលដៅ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "ឈ្មោះបច្ចេកទេសរបស់អ្នកប្រើប្រាស់នៅលើកំណត់ត្រា" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"%(trigger_value)s\"\" " +"%(trigger_label)sអាចត្រូវបានប្រើតែ%(state_value)sជាមួយប្រភេទអំពើប៉ុណ្ណោះ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "កេះ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "កាលបរិច្ឆេទលកខណ្ឌន្ទិកៈ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "ការប្រើប្រាស់" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"ប្រើ 'អ្នកប្រើជាក់លាក់' " +"ដើម្បីកំណត់អ្នកប្រើដូចគ្នានៅលើសកម្មភាពបន្ទាប់ជានិច្ច។ ប្រើ " +"'អ្នកប្រើទូទៅពីកំណត់ត្រា' " +"ដើម្បីបញ្ជាក់ឈ្មោះវាលរបស់អ្នកប្រើដើម្បីជ្រើសលើកំណត់ត្រា។" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "ការប្រើប្រាស់ប្រទិតិន" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"ប្រើសកម្មភាពដោយស្វ័យប្រវត្តិដើម្បីកេះសកម្មភាពដោយស្វ័យប្រវត្តិ\n" +" អេក្រង់ជាច្រើន។ ឧទាហរណ៍: ការនាំមុខដែលបានបង្កើតឡើងដោយអ្នកប្រើជាក់លាក់អាច\n" +" ត្រូវបានកំណត់ដោយស្វ័យប្រវត្តិទៅក្រុមលក់ជាក់លាក់ឬមួយ\n" +" ឱកាសដែលនៅតែមានស្ថានភាពស្ថិតក្នុងការរង់ចាំបន្ទាប់ពី 14 ថ្ងៃអាច\n" +" កេះអ៊ីមែលរំលឹកស្វ័យប្រវត្តិ។" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "ឈ្មោះការប្រើប្រាស់ឯកសារ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "គុណតំលៃតំបង់គោលដៅ" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "ព្រមាន" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"នៅពេលដែលគណនាពេលវេលាដែលមានមូលដ្ឋានលើពេលវេលាវាអាចប្រើប្រតិទិនដើម្បីគណនាកាលបរិច្ឆេទដោយផ្អែកលើថ្ងៃធ្វើការ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"នៅពេលដោះស្រាយជាមួយសកម្មភាពច្រើនលំដាប់បញ្ជាត្រូវផ្អែកលើលំដាប់។ " +"លេខទូរស័ព្ទមានន័យថាអាទិភាពខ្ពស់។" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"នៅពេលដែលស្ថានភាពគួរតែត្រូវបានកេះ។ ។ " +"បើមានបច្ចុប្បន្នវានឹងត្រូវបានត្រួតពិនិត្យដោយកម្មវិធីកំណត់ពេល & ‧; ។ " +"ប្រសិនបើទទេនឹងត្រូវបានត្រួតពិនិត្យនៅពេលបង្កើតនិងធ្វើបច្ចុប្បន្នភាព។" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "នៅពេលដោះធីកច្បាប់នេះត្រូវបានលាក់ហើយនឹងមិនត្រូវបានប្រតិបត្តិទេ។" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"សរសេរកូដ Python ថាសកម្មភាពនឹងត្រូវបានប្រតិបត្តិ។ " +"អថេរមួយចំនួនអាចរកបានសម្រាប់ប្រើប្រាស់។ ជំនួយអំពីកន្សោម python " +"ត្រូវបានផ្តល់ឱ្យក្នុងផ្ទាំងជំនួយ។" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/ko.po b/addons/base_automation/i18n/ko.po new file mode 100644 index 00000000..377d2980 --- /dev/null +++ b/addons/base_automation/i18n/ko.po @@ -0,0 +1,620 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Link Up링크업 <linkup.way@gmail.com>, 2020 +# JH CHOI <hwangtog@gmail.com>, 2021 +# Linkup <link-up@naver.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Linkup <link-up@naver.com>, 2021\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "작업 설명" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "작업명" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "수행할 작업" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "작업 유형" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "활성" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "활동" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "활동 사용자 유형" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "채널 추가하기" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "팔로워 추가하기" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "적용" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "아카이브됨" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "자동 작업" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "자동 작업" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "자동화" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "기본 동작 규칙 : 확인 및 실행" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "양식 수정에 기반" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "시간 기반 조건" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "도메인 업데이트 전" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "바인딩 모델" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "바인딩 유형" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "보기 유형을 묶기" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "하위 작업" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "종속 서버 작업이 실행됩니다. 주의 : 전역 반환 값으로 사용할 반환된 작업 값을 마지막에 반환합니다." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "작성일시" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "일" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"트리거 날짜 이후에 지연. \n" +" 트리거 날짜에 지연이 필요한 경우,\n" +" 회의 15 분 전에 미리 알림 보내기와 같이 음수를 입력할 수 있습니다." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "트리거 날짜 이후 지연" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "지연 유형" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "작업 비활성화" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"이 자동 작업을 비활성화하면 작업 절차를 계속 진행할 수 있지만 \n" +" 중요하거나 또는 필수인 필드를 설정할 수 있는 \n" +" 사용자 지정을 효과적으로 비활성화하기 때문에 \n" +" 이 작업 이후에 생성된 모든 데이터가 손상될 수 있습니다." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "만기일" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "만기 유형" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "작업 편집하기" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "이메일 서식" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "외부 ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "onchange를 트리거하는 필드." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "그룹" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "시간" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "XML 파일에 정의된 작업의 ID입니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "작업 규칙을 실행하기 전에 이 조건을 만족해야 합니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "레코드 갱신 전에 이 조건을 만족해야 합니다." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "최근 실행" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "최소 지연 메시지" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "링크 필드" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "분" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "모델" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "모델명" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "생성 / 업데이트된 모델을 기록하십시오. 이 필드를 설정하면 기본 모델과 다른 모델만 정의됩니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "서버 동작이 실행되는 모델" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "월" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "메모" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "이 작업은 예약 후 최대 %d분까지 트리거할 수 있습니다." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "필드 변경을 위한 트리거" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "생성할 때" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "생성 또는 갱신할 때" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "삭제할 때" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "갱신할 때" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "대상 보기에 대한 설명, 예를 들면 사용 및 용도가 있는 사용자를 위한 선택적 도움말." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "서버 작업에서 사용한 레코드에 새로 만든 레코드를 연결하는 데 사용되는 필드를 제공합니다." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "파이썬 코드" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "담당자" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "순차적" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "서버작업" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "서버 작업" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "값을 설정하면 주어진 모델의 메뉴에서 이 작업을 사용할 수 있습니다." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "새로운 자동화 시스템 구축" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "요약" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "목표 모델" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "목표 모델명" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "레코드에 있는 사용자의 기술적 이름" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"\"%(trigger_value)s\" %(trigger_label)s는 \"%(state_value)s\" 작업 유형에만 사용할 수 " +"있습니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "이러한 필드 중 하나가 업데이트된 경우에만 작업이 트리거됩니다. 비어있는 경우 모든 필드가 감시됩니다." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"자동화된 작업 실행 중 오류가 발생했습니다\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "트리거" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "트리거된 날짜" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "트리거 필드" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"서버 작업 유형입니다. 다음 값을 사용할 수 있습니다.\n" +"- 'Python 코드 실행' : 실행될 Python 코드 블록입니다.\n" +"- '작성 ': 새 값으로 새 레코드를 만듭니다.\n" +"- '기록 업데이트' : 레코드의 값을 업데이트합니다.\n" +"- '여러 작업 실행' : 여러 다른 서버 작업을 트리거하는 작업을 정의합니다.\n" +"- '이메일 보내기' : 자동으로 이메일을 보냅니다(메일 및 채팅).\n" +"- '팔로워 추가' : 레코드에 팔로워를 추가합니다(메일 및 채팅).\n" +"- '다음 활동 만들기' : 활동을 만듭니다(메일 및 채팅)." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "사용량" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"다음 작업에서 항상 동일한 사용자를 할당하려면 '특정 사용자'를 사용합니다. '레코드에서 일반 사용자'를 사용하여 레코드에서 선택할 " +"사용자의 필드 이름을 지정하십시오." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "일정표 사용" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"자동 작업을 사용하여 작업 자동 실행 다른 화면. \n" +" 예 : 특정 사용자가 만든 영업제안은 특정 영업팀에 자동으로 설정됩니다. \n" +" 14일이 지난 후에도 보류 상태인 영업제안은 자동 미리 알림 이메일을 트리거합니다." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "사용자 필드 이름" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "매핑된 값" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "경고" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "하루 기준으로 시간을 지정한 조건을 계산할 때는 작업일에 기초하여 날짜를 계산하는 달력을 사용하는 것이 가능합니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "여러 작업을 처리 할 때 실행 순서는 시퀀스를 기반으로 합니다. 작은 숫자가 우선 순위가 높습니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"조건이 트리거 되는 시기. \n" +" 존재하는 경우, 스케줄러에 의해 점검됩니다. 비어있는 경우 생성 및 업데이트 할 때 검사됩니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "선택을 취소하면 규칙은 숨겨지고 실행되지 않습니다." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"작업을 실행할 파이썬 코드를 작성하십시오. 일부 변수는 사용할 수 있지만 파이썬 표현식에 대한 도움말은 도움말 옵션 탭에 있습니다." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "관리자에게 이 자동 작업을 비활성화하거나 수정하도록 요청할 수 있습니다." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "이 자동 작업을 비활성화하거나 편집하여 문제를 해결할 수 있습니다." diff --git a/addons/base_automation/i18n/lb.po b/addons/base_automation/i18n/lb.po new file mode 100644 index 00000000..a449b8bb --- /dev/null +++ b/addons/base_automation/i18n/lb.po @@ -0,0 +1,634 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 09:10+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Automated Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Automated Rule Test" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation_lead_test__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test__employee +msgid "Check this box if this contact is an Employee." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation_lead_test__state__done +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_demo +msgid "Demo" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__employee +msgid "Employee" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation_lead_test__state__open +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__name +msgid "Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation_lead_test__state__draft +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__partner_id +msgid "Partner" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation_lead_test__state__pending +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record on " +"used by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__state +msgid "Status" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +msgid "Watched fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" diff --git a/addons/base_automation/i18n/lo.po b/addons/base_automation/i18n/lo.po new file mode 100644 index 00000000..c1dd5cbe --- /dev/null +++ b/addons/base_automation/i18n/lo.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "ຍົກເລີກ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "ຄຸ່ຄ້າ" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "ສະພາບ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/lt.po b/addons/base_automation/i18n/lt.po new file mode 100644 index 00000000..029ee1aa --- /dev/null +++ b/addons/base_automation/i18n/lt.po @@ -0,0 +1,628 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Naglis Jonaitis, 2021 +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# Audrius Palenskis <audrius.palenskis@gmail.com>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: grupoda2 <dmitrijus.ivanovas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Veiksmo aprašymas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Veiksmo pavadinimas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Atliktinas veiksmas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Veiksmo tipas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktyvus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Veikla" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Veiklos vartotojo tipas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Pridėti kanalus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Pridėti sekėjų" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Taikyti" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archyvuotas" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatinis veiksmas" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatiniai veiksmai" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizacija" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Bazinė veiksmo taisyklė: tikrinti ir vykdyti" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Pagal formos keitimą" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Remiantis laiko sąlyga" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Prieš domeno atnaujinimą" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Siejantis modelis" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Siejimo tipas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Dukteriniai veiksmai" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Dukteriniai serverio veiksmai, kurie bus atlikti. Atkreipkite dėmesį, kad " +"paskutinio grąžinimo grąžinta reikšmė bus naudojama kaip bendroji grąžinimo " +"reikšmė." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dienos" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Atidėti po iššaukimo datos.\n" +"Galite įrašyti neigiamą skaičių, jei reikia atidėjimo\n" +"prieš iššaukimo datą, pvz., 15 min. prieš susitikimą \n" +"siunčiamas priminimas." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Atidėti po iššaukimo datos" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Uždelsimo tipas" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Termino data po" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Termino tipas" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "El. laiško šablonas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Išorinis ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupės" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Valandos" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Veiksmo ID yra apibrėžtas XML faile" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Jei yra, ši sąlyga turi būti patenkinta prieš veiksmo taisyklės įvykdymą." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "Jei yra, ši sąlyga turi būti patenkinta prieš įrašo atnaujinimą." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Paskutinis veikimas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutės" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Šablonas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Modelio pavadinimas" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modelis įrašų kūrimui / atnaujinimui. Nustatykite šį lauką tik tuo atveju, " +"jei reikia nurodyti modelį, kuris nėra bazinis." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Modelis, kuriam vykdomas serverio veiksmas." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Mėnesiai" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Pastaba" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Iššaukus laukų pakeitimą" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Sukūrus" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Sukūrus ir atnaujinus" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Ištrynus" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Atnaujinus" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Papildomas pagalbinis tekstas vartotojams, turintis tikslinio rodinio aprašą" +" su jo panaudojimu ir tikslu." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python kodas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Atsakingas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Seka" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serverio veiksmas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Serverio veiksmai" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Vertės nustatymas padaro šią vertę pasiekiama duotojo modelio šoniniame " +"meniu." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Nustatyti naują automatinė automatizaciją" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Santrauka" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Rodyti įrašą" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Techninis vartotojo vardas įraše" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"\"%(trigger_value)s\" %(trigger_label)s gali būti naudojama tik su " +"\"%(state_value)s\" veiksmo tipu" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Iššaukimas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Iššaukimo data" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Naudojimas" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Naudokite \"konkretus vartotojas\", kad priskirtumėte tą patį vartotoją " +"kitam veiksmui. Naudokite \"standartinis vartotojas iš įrašo\", kad " +"nurodytumėte vartotojo lauko pavadinimą pasirinkimui įraše." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Naudoti kalendorių" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Naudokite automatizuotus veiksmus automatiniam veiksmų\n" +"suaktyvinimui įvairiuose ekranuose. Pavyzdžiui: konkretaus\n" +"vartotojo sukurtas šaltasis kontaktas gali būti automatiškai\n" +"nustatytas konkrečiai pardavimų komandai arba galimybė,\n" +"kuri yra laukiančioje būsenoje, gali automatiškai suaktyvinti\n" +"priminimo laišką praėjus 14 dienų." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Vartotojo lauko pavadinimas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Reikšmių susiejimas" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Įspėjimas" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Kai skaičiuojama laiku grįsta sąlyga, galima naudoti kalendorių ir " +"apskaičiuoti datą pagal darbo dienas." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Kai tvarkotės su keliais veiksmais, vykdymo tvarka yra paremta seka. Mažas " +"skaičius reiškia aukštą prioritetą." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Kada sąlyga turėtų būti iššaukiama.\n" +"Jei yra, ji bus patikrinama planuoklio. Jei nėra, ji bus patikrinama sukūrimo ir atnaujinimo metu." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Kai atžymėta, taisyklė bus paslėpta ir nebus vykdoma." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Parašykite Python kodą, kurį vykdys veiksmas. Galima naudoti kintamuosius; " +"pagalbą apie naudojamas Python išraiškas gali rasti pagalbos skiltyje." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/lv.po b/addons/base_automation/i18n/lv.po new file mode 100644 index 00000000..f233861c --- /dev/null +++ b/addons/base_automation/i18n/lv.po @@ -0,0 +1,601 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# JanisJanis <jbojars@gmail.com>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Action Description" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Darbības Nosaukums" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Darāma darbība" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Darbības Tips" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktīvs Sistēmā" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivitāte" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Pievienot kanālus" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Add Followers" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arhivēts" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatizētas darbības" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automation" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Binding Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Binding Type" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Child Actions" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dienas" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Aizkave pēc trigger datuma" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Aizkaves tips" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-pasta veidne" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Ārējais ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupas" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Stundas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Pēdējoreiz atjaunoja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Pēdējoreiz atjaunots" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minūtes" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modelis" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Model Name" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model on which the server action runs." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Mēneši" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Piezīmes" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Code" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Atbildīgais" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Secība" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Servera Darbība" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Servera Darbības" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Setting a value makes this action available in the sidebar for the given " +"model." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Summary" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Target Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Ierosinātājs" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Datums, kad tiks Izpildīts" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Pielietojums" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Value Mapping" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Brīdinājums" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/mk.po b/addons/base_automation/i18n/mk.po new file mode 100644 index 00000000..df08e473 --- /dev/null +++ b/addons/base_automation/i18n/mk.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Откажано" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Партнер" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Секвенца" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Статус" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/mn.po b/addons/base_automation/i18n/mn.po new file mode 100644 index 00000000..27ca1a58 --- /dev/null +++ b/addons/base_automation/i18n/mn.po @@ -0,0 +1,633 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Minj P <pminj322@gmail.com>, 2020 +# nurbakhit nurka <nurbakhit@bumanit.mn>, 2020 +# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: tserendavaa tsogtoo <tseegii011929@gmail.com>, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Үйлдлийн тодорхойлолт" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Үйлдлийн нэр" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Хийх ажил" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Үйлдлийн төрөл" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Идэвхитэй" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Ажилбар" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Ажилбарын хэрэглэгчийн төрөл" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Суваг нэмэх" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Дагагчид нэмэх" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Дараахад хэрэглэх" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Архивласан" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Автомат үйлдэл" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Үйл ажиллагааны автоматжуулалт" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Автоматжуулалт" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Үндсэн ажилбарын дүрэм: шалгаад хэрэгжүүл" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Маягтын өөрчлөлт дээр суурилсан" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Хугацаат нөхцөлд суурилсан" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Домэйныг шинэчлэхээс өмнө" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Моделийг холбох" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Төрлийг холбох" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Дэд үйлдлүүд" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Ажиллах дэд серверийн үйлдэлүүд. Хамгийн сүүлийн буцаагдах үйлдэл утга нь " +"бүгдэд хэрэглэгдэх ерөнхий буцах утга болж хэрэглэгдэнэ." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Үүсгэсэн этгээд" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Өдөр" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Өдөөгч огнооны дараа азнана.\n" +" Сөрөг тоо тавьж өдөөх огнооноос өмнө азналт хийлгэж бас болно, \n" +"уулзалтаас 15 минутын өмнө сануулга өгдөгтэй ижил." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Саатсаны дараах гарааны огноо" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Саатлын төрөл" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Хугацаа дуусах огноо" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Төлбөрийн төрөл" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Имэйл загвар" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Гадаад ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Группүүд" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Цаг" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Хэрэв XML файл тодорхойлогдсон бол үйлдлийн ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Хэрэв сонгосон бол үйлдлийн дүрмийг ажиллуулахын өмнө энэ нөхцөл нь биелж " +"байх ёстой." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "Байгаа бол энэ нөхцөл нь бичлэгийг шинэчлэхийн биелж байх ёстой." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Сүүлд Ажилласан" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Сүүлд зассан этгээд" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Сүүлд зассан огноо" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Минут" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Модел" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Моделийн Нэр" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Бичлэг үүсгэх / шинэчлэхэд зориулагдсан модель. Энэ талбарыг зөвхөн суурь " +"моделиэс өөр модель тодорхойлоход бөглөнө үү." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Серверийн үйлдэл ажилладаг модел." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Сар" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Тэмдэглэл" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Өөрчлөлт дээр талбаруудын өдөөгч" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Үүсгэхэд" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Үүсгэх болон шинэчлэхэд" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Устгахад" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Шинэчлэхэд" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Шилжих харагдацын тухай тодорхойлолт, хэрэглээ, зорилго зэрэгийг хэрэглэгчид" +" тайлбарласан нэмэлт тусламжийн текст" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python код" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Хариуцагч" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Дугаарлалт" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Сервер үйлдэл" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Сервер үйлдлүүд" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Өгөгдсөн моделийн хувьд хажуугийн дэлгэц дээрх үйлдлийг ажиллуулах боломжтой" +" болгохын тулд утгуудыг тохируулна." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Автоматжуулсан автомат үйлдлийг тохируулах" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Хураангуй" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Хүрэх Модель" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Хүрэх моделийн нэр" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Бичлэг дээрх хэрэглэгчийн техникийн нэр" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"\"%(trigger_value)s\" %(trigger_label)s-ыг %(state_value)s үйлдлийн төрөлд л" +" ашиглана." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Гол" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Гол огноо" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Серверийн үйлдлийн төрөл. Дараах утгуудыг сонгох боломжтой:\n" +"- \"Python кодыг ажиллуулах\": python кодын блок ажиллана.\n" +"- \"Үүсгэх\": шинэ утга бүхий шинэ бичлэгийг үүсгэнэ.\n" +"- \"Бичлэгийг шинэчлэх\": бичлэгийн утгыг шинэчилнэ.\n" +"- \"Олон үйлдэл ачааллах\": хэд хэдэн өөр серверийн үйлдлийг ачааллахыг өдөөдөг үйлдлийг тодорхойлно.\n" +"- \"Имэйл илгээх\": автоматаар имэйлийг илгээнэ (Хөөрөлдөх)\n" +"- \"Дагагч нэмэх\": Бичлэг дээр дагагч нэмэх (Хөөрөлдөх)\n" +"- \"Дараагийн ажилбар үүсгэх\": Ажилбар үүсгэх (Хөөрөлдөх)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Хэрэглээ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Нэг хэрэглэгчийн дараагийн ажилбарт хариуцагчаар байнга тохируулах бол " +"\"Тусгай хэрэглэгч\" -ийг ашиглана. Бичлэг дээрх хэрэглэгчийн талбарын " +"нэрийг тодорхойлох бол \"Бичлэг дээрх ерөнхий хэрэглэгч\"-ийг ашиглана." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Цаглабар хэрэглэх" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Дэлгэцүүдэд зориулсан үйлдлүүдийг автоматаар өдөөхийн\n" +"тулд автомат үйлдлийг ашигладаг. Жишээ нь тодорхой нэг\n" +"хэрэглэгчээс үүссэн сэжмийн Борлуулалтын багийг тусгайлан\n" +"сонгох үйлдлийг автомат болгох, эсвэл төлөв нь хүлээгдэж \n" +"байгаа нэг боломжийн хувьд 14 хоногийн дараа сануулга \n" +"имэйлийг автоматаар илгээх." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Хэрэглэгч талбарын нэр" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Утга харгалзуулалт" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Анхааруулга" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Өдөр дээр суурилсан хугацааны нөхцлийг тооцоолоход ажиллах өдөр дээр " +"суурилсан цаглабарыг ашиглах боломжтой." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Олон үйлдэл хийх үед ачааллах дараалал нь дараалал дээр суурилна. Бага " +"тоотой нь өндөр ач холбогдолтой гэсэн үг." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Нөхцөл хэдийд өдөөгдөхийг зааж өгдөг. \n" +"Байвал товлогчоор шалгагдах болно. Хоосон бол үүсгэх болон шинэчлэх үед шалгагдана." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Тэмдэглээгүй бол дүрэм харагдахгүй бөгөөд ажиллахгүй." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Үйлдлийг ачааллах Python кодыг бичнэ үү. Хэрэглэх боломжтой зарим " +"хувьсагчуудыг харж болно, python илэрхийллийн тайлбар нь тусламжийн хавтсанд" +" байгаа." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/nb.po b/addons/base_automation/i18n/nb.po new file mode 100644 index 00000000..e9dd0066 --- /dev/null +++ b/addons/base_automation/i18n/nb.po @@ -0,0 +1,592 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Aleksander, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Handlingsbeskrivelse" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Handlingsnavn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Handling å gjøre" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Handlingstype" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivitet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Legg til kanaler" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Legg til følgere" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Bruk på" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arkivert" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatisert handling" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatiserte handlinger" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatisering" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dager" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Forsinkelse etter triggerdato" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "forsinkelse typen" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-postmal" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Ekstern ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupper" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Timer" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Handlings-ID er definert i en XML-fil" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Sist kjørt" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutter" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modell" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Modellnavn" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Modell handlinger fra server kjører på." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Måneder" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Notat" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Ved opprettelse" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Ved opprettelse og oppdatering" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Ved sletting" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Ved oppdatering" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Opsjonell hjelpetekst for brukerene med beskrivelse av målvisningen, slik " +"som bruken av visningen." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python-kode" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Ansvarlig" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Handling på server" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Handlinger på server" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Oppsummering" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Utløser" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Triggerdato" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Bruk" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Bruk kalender" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Verdikobling" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Advarsel" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/ne.po b/addons/base_automation/i18n/ne.po new file mode 100644 index 00000000..b5703230 --- /dev/null +++ b/addons/base_automation/i18n/ne.po @@ -0,0 +1,573 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/nl.po b/addons/base_automation/i18n/nl.po new file mode 100644 index 00000000..1f162fdf --- /dev/null +++ b/addons/base_automation/i18n/nl.po @@ -0,0 +1,654 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Cas Vissers <casvissers@brahoo.nl>, 2020 +# Gunther Clauwaert <gclauwae@hotmail.com>, 2020 +# Odoo Experts Consultants <consultants@odooexperts.nl>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2021\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Actieomschrijving" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Naam actie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Uit te voeren actie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Soort actie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Actief" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Activiteit" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Activiteit gebruikerstype" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Voeg kanalen toe" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Volgers toevoegen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Toepassen op" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Gearchiveerd" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Geautomatiseerde actie" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Geautomatiseerde acties" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatisering" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Basis actie regel: controleer en voer uit" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Gebaseerd op formulier wijziging" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Gebaseerd op tijd" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Voor domein update" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Bindend model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Soort binding" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Binding soorten weergaves" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Onderliggende acties" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Onderliggende server acties welke worden uitgevoerd. Let op dat de laatste " +"geretourneerde actie waarde wordt gebruikt als globale return waarde." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dagen" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Vertraging na de aanroep datum. \n" +"U kunt een negatieve waarde invoeren, indien u een actie wilt uitvoeren voor de aanroep datum, bijvoorbeeld een herinnering 15 minuten voor een afspraak." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Vertraging na activeerdatum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Soort vertraging" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Actie uitschakelen" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Als u deze geautomatiseerde actie uitschakelt, kunt u doorgaan met uw workflow\n" +" maar alle gegevens die daarna worden gemaakt, kunnen mogelijk inconsistent zijn,\n" +" aangezien u een aanpassing uitschakelt die kan worden ingesteld\n" +" als belangrijke en / of verplichte velden." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Vervaldatum in" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Vervalsoort" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Wijzig actie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-mailsjabloon" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Externe ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Velden die de onchange doen afgaan." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Groepen" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Uren" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID van de actie indien gedefinieerd in een XML bestand" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Indien aanwezig, moet deze conditie voldaan zijn voordat de actie regel " +"wordt uitgevoerd." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Indien aanwezig, moet aan deze conditie zijn voldaan, voor het bijwerken van" +" het record." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Laatst uitgevoerd" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Minste vertraging boodschap" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Koppelingsveld" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minuten" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Type" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Modelnaam" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model voor aanmaken/updaten van record. Stel dit veld enkel in voor een " +"ander model dan de base module." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model waarop de server actie loopt." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Maanden" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Notitie" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "Deze actie zal binnen %d minuten worden uitgevoerd." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Bij wijziging veld trigger" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Bij aanmaken" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Bij aanmaken & bijwerken" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Bij het verwijderen" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Bij bijwerken" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Optionele helptekst voor de gebruikers met een beschrijving van de weergave," +" zoals haar gebruik en bedoeling." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Geef het veld op dat wordt gebruikt om het nieuw gemaakte record te koppelen" +" aan het record dat wordt gebruikt door de serveractie." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python code" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Verantwoordelijke" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Reeks" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serveractie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Server-acties" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Een waarde instellen maakt de actie beschikbaar in de zijbalk voor het " +"opgegeven model." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Zet een nieuwe geautomatiseerde automatisering op " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Samenvatting" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Doelmodel" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Doel model naam" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Technische naam van de gebruiker op het record" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"De \"%(trigger_value)s\" %(trigger_label)s kan alleen gebruikt worden met de" +" \"%(state_value)s\" actie type" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"De actie gaat af wanneer, en enkel wanneer, een van deze velden bijgewerkt " +"wordt. Indien leeg wordt er naar alle velden gekeken." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"De fout die is opgetreden tijdens het uitvoeren van de geautomatiseerde actie\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Activeer" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Activeringsdatum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Triggervelden" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Type serveractie. De volgende waarden zijn beschikbaar:\n" +"- 'Python-code uitvoeren': een blok python-code dat wordt uitgevoerd\n" +"- 'Maken': maak een nieuw record met nieuwe waarden\n" +"- 'Update een record': update de waarden van een record\n" +"- 'Meerdere acties uitvoeren': definieer een actie die verschillende andere serveracties activeert\n" +"- 'E-mail verzenden': automatisch een e-mail verzenden (Discuss)\n" +"- 'Volgers toevoegen': volgers toevoegen aan een record (Discuss)\n" +"- 'Maak volgende activiteit': maak een activiteit aan (Discuss)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Gebruik" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Gebruik 'Specifieke gebruiker' om altijd dezelfde gebruiker toe te wijzen " +"aan de volgende activiteit. Gebruik 'Generieke gebruiker van record' om het " +"veldnaam op te geven van de gebruiker die in de record moet worden gekozen." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Gebruik kalender" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Gebruik geautomatiseerde acties om acties automatisch te activeren\n" +"voor verschillende schermen. Voorbeeld: een lead gemaakt door een\n" +"specifieke gebruiker kan\n" +"automatisch worden ingesteld op een specifiek verkoopteam, of een\n" +"verkoopkans die na 14 dagen nog een status in behandeling heeft\n" +"triggert een automatische herinneringsmail." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Gebruiker veldnaam" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Waarde verdeling" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Waarschuwing" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Bij het berekenen van een dag gebaseerde conditie, is het mogelijk om een " +"kalender te gebruiken gebaseerd op werkdagen." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Wanneer u meerdere acties heeft zal de volgorde van uitvoering bepaald " +"worden aan de hand van de sequentie. Een laag nummer betekent een hoge " +"prioriteit." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Wanneer moet de conditie worden aangeroepen.\n" +"Indien aanwezig wordt deze aangevinkt door de planner. Indien leeg, wordt deze aangevinkt bij het aanmaken en bijwerken." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" +"Wanneer uitgevinkt, is de regel onzichtbaar en zal deze niet worden " +"uitgevoerd." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Schrijf Python code die de actie uitvoert. Sommige variabelen zijn " +"beschikbaar voor gebruik; help over Python expressies is gegeven in het hulp" +" tabblad." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"U kunt een beheerder vragen om deze geautomatiseerde actie uit te schakelen " +"of te corrigeren." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"U kunt deze geautomatiseerde actie uitschakelen of bewerken om het probleem " +"op te lossen." diff --git a/addons/base_automation/i18n/nl_BE.po b/addons/base_automation/i18n/nl_BE.po new file mode 100644 index 00000000..e196fa36 --- /dev/null +++ b/addons/base_automation/i18n/nl_BE.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Geannuleerd" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Relatie" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Reeks" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Status" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/pl.po b/addons/base_automation/i18n/pl.po new file mode 100644 index 00000000..a6d54c44 --- /dev/null +++ b/addons/base_automation/i18n/pl.po @@ -0,0 +1,641 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Dariusz Żbikowski <darek@krokus.com.pl>, 2020 +# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2020 +# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Mariusz, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Karol Rybak <karolrybak85@gmail.com>, 2020 +# Andrzej Donczew <a.donczew@hadron.eu.com>, 2020 +# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020 +# Radosław Biegalski <radoslaw.biegalski@openglobe.pl>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maksym <ms@myodoo.pl>, 2020\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Opis akcji" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nazwa akcji" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Akcja do wykonania" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Typ akcji" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktywne" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Czynność" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Czynność Typ Użytkownika" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Dodaj kanały" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Dodaj obserwatorów" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Zastosuj do" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Zarchiwizowane" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatyczne akcje" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatyczne akcje" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatyzacja" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Zasada działania podstawowego: sprawdź i wykonaj" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "bazujące na formularzu modyfikacji" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Bazujące na warunku czasu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Domena przed aktualizacją" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Model wiążący" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Typ wiążący" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Typy widoku Rozliczeń" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Akcje podrzędne" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Działania serwera potomnego, które zostaną wykonane. Zwróć uwagę, że " +"ostatnia zwracana wartość akcji zostanie użyta jako globalna wartość " +"zwracana." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Utworzona przez" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dni" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Opóźnienie po dacie uruchomienia.\n" +" Możesz wprowadzić liczbę ujemną, jeśli potrzebujesz opóźnienia przed\n" +" datą uruchomienia, np. Wysłanie przypomnienia na 15 minut przed spotkaniem." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Opóźnienie po dacie wyzwolenia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Typ opóźnienia" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Termin za" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Rodzaj terminu" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Szablon wiadomości" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Identyfikator zewnętrzny" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Pola które aktywują się przy zmianie." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupy" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Godziny" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID akcji, jeśli została zdefiniowana w pliku XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Jeśli podane, to warunek musi być spełniony, aby reguła akcji została " +"wykonana." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Jeśli podane, to warunek musi być spełniony, aby rekord został " +"zmodyfikowany." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Ostatnie uruchomienie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Najmniej Opóźniona Wiadomość" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Pole linku" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minuty" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nazwa modelu" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model do tworzenia / aktualizacji rekordów. Ustaw to pole tylko, aby " +"określić inny model niż model podstawowy." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model, na którym działa akcja serwera." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Miesiące" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Notatka" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Wyzwalacz pól onchange" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Przy tworzeniu" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Przy tworzeniu i zapisie" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Po usunięciu" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Przy zapisie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Opcjonalny tekst dla użytkowników z opisem widoku docelowego, na przykład " +"jego użycie i cel." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Podaj pole używane do łączenia nowo utworzonego rekordu na rekordzie " +"używanego przez działanie serwera." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Kod Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Odpowiedzialny" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Numeracja" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Akcja serwera" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Akcje serwera" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Ustawienie wartości powoduje, że ta czynność jest dostępna na pasku bocznym " +"dla danego modelu." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Podsumowanie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Model docelowy" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nazwa modelu docelowego" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Nazwa techniczna użytkownika w rekordzie" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Akcja zostanie uruchomiona jeżeli i tylko jeżeli jedno z tych pól zostanie " +"zaktualizowane. Jeżeli puste, wszystkie pola będą monitorowane." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Wyzwalacz" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Data wyzwolenia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Pola wyzwalające" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Rodzaj akcji serwera. Dostępne są następujące wartości:\n" +"- 'Wykonaj kod Python': blok kodu Python, który zostanie wykonany\n" +"- 'Utwórz': utwórz nowy rekord o nowej wartościs\n" +"- 'Zaktualizuj rekord': zaktualizuj wartości rekordu\n" +"- 'Wykonaj kilka akcji': zdefiniuj akcję, która wyzwala kilka innych akcji serwera\n" +"- 'Wyślij e-mail': automatycznie wyślij wiadomość e-mail (Dyskusja)\n" +"- 'Dodaj obserwatorów': dodaj obserwujących do rekordu (Dyskusja)\n" +"- 'Utwórz następną czynność': utwórz aktywność (Dyskusja)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Użycie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Użyj \"Określony użytkownik\", aby zawsze przypisać tego samego użytkownika " +"do następnej czynności. Użyj \"Ogólny użytkownik z rekordu\", aby określić " +"nazwę pola użytkownika, którego chcesz wybrać w rekordzie." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Stosuj kalendarz" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Nazwa pola użytkownika" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapowanie wartości" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Ostrzeżenie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Przy obliczaniu warunku opartego na dniu można użyć kalendarza do obliczenia" +" daty na podstawie dni roboczych." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"W przypadku wielu akcji kolejność wykonywania zależy od sekwencji. Niski " +"numer oznacza wysoki priorytet." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Kiedy powinien zostać uruchomiony warunek.\n" +" Jeśli jest obecny, zostanie sprawdzony przez program planujący. Jeśli jest pusty, zostanie sprawdzony przy tworzeniu i aktualizacji." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" +"Kiedy nie jest zaznaczone, ta zasada jest ukryta i nie będzie wykonywana." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Napisz kod w języku Python, który wykona akcję. Niektóre zmienne są dostępne" +" do użycia; pomoc na temat wyrażeń python znajduje się w zakładce pomocy." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/pt.po b/addons/base_automation/i18n/pt.po new file mode 100644 index 00000000..0857b61b --- /dev/null +++ b/addons/base_automation/i18n/pt.po @@ -0,0 +1,604 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Pedro Castro Silva <pedrocs@exo.pt>, 2020 +# Joao Felix <jrmfelix@gmail.com>, 2020 +# Nuno Silva <nuno.silva@arxi.pt>, 2020 +# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Descrição da Ação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nome da Ação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Ação a fazer" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tipo de Ação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Ativo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Atividade" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Tipo de Utilizador da Atividade" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Adicionar Canais" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Adicionar Seguidores" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Aplicar em " + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arquivados" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Ação Automatizada" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Ações Automatizadas" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automação" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Baseado na Modificação do Formulário" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Com base no tempo de condição " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Antes de Atualizar Domínio" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Modelo Obrigatório " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Tipo Obrigatório" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Ações Descendentes" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Ações de servidor descendentes que serão executadas. Note que o valor de " +"retorno da última ação será usado com valor global de retorno." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dias" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Atraso depois da data limite" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tipo de atraso" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Vencimento em" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de Vencimento" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Modelo de Email" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Id. Externa" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupos" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Horas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID of the action if defined in a XML file" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Última Execução" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutos" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modelo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nome do Modelo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modelo para criação / atualização de registos. Preencha este campo apenas de" +" quiser atribui um modelo diferente do modelo base." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Meses" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Nota" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Na Criação" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Na Criação e Atualização" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Na Eliminação" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Ao Atualizar" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Texto opcional de ajuda para os utilizadores contendo uma descrição da " +"vista, tal como a sua utilização e finalidade." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Código Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsável" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Ação de servidor" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Ações de Servidor" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Configurar uma nova automatização automática." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Sumário" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Modelo Alvo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nome do modelo alvo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Trigger" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Data Limite" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Utilização" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Utilizar Calendário" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Nome do Campo de Utilizador" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapeamento de Valores" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Quando lida com múltiplas ações, a ordem de execução será baseada na " +"sequência. Um número baixo significa prioridade alta." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/pt_BR.po b/addons/base_automation/i18n/pt_BR.po new file mode 100644 index 00000000..1c3980aa --- /dev/null +++ b/addons/base_automation/i18n/pt_BR.po @@ -0,0 +1,662 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# danimaribeiro <danimaribeiro@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# Luiz Carlos de Lima <luiz.carlos@akretion.com.br>, 2020 +# Adriel Kotviski <kotviski@gmail.com>, 2020 +# falexandresilva <falexandresilva@gmail.com>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# Yannick Belot <yannickbh@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Silmar <pinheirosilmar@gmail.com>, 2020 +# mariana rodrigues <mariana12v@gmail.com>, 2020 +# Fernando Colus <fcolus1@gmail.com>, 2020 +# PopSolutions Cooperativa Digital <popsolutions.co@gmail.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Descrição da Ação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nome da Ação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Ação a ser feita" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tipo de Ação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Ativo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Atividade" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Tipo de Usuário de Atividade" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Adicionar Canais" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Adicionar Seguidores" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Aplicar em" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arquivado" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Ação automatizada" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Ações Automatizadas" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automação" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Regra de Action Rule: verificar e executar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Baseado no Formulário de Modificação" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Condição baseada em tempo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Antes da Atualização de Domínio" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Binding Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Tipo de Ligação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Tipo de Visualização de Ligação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Ações Iniciais" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Ações de servidor filho que serão executadas. Note-se que o último retorno " +"retornou o valor da ação que será usado como valor de retorno global." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dias" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Atraso após a data de disparo. Você pode colocar um número negativo se você " +"precisa de um atraso antes da data de disparo, como o envio de um lembrete " +"15 minutos antes de uma reunião." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Atraso após a data de disparo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tipo de atraso" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Desabilitar Ação" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Desativar esta ação automatizada permitirá que você continue seu fluxo de trabalho,\n" +" mas quaisquer dados criados depois disso podem ser corrompidos,\n" +" já que você está efetivamente desativando uma personalização que pode definir\n" +" campos importantes e/ou obrigatórios." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Vencimento em" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de vencimento" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Editar ação" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Modelo de E-mail" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID Externo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Campos que acionam o onchange." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupos" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Horas" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID da ação se definido em um arquivo XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Se presente, esta condição precisa ser satisfeita antes de executar a regra " +"de ação" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Se presente, esta condição precisa ser satisfeita antes da atualização do " +"registro." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Última Execução" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Msg de Menor Atraso" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Campo de Vínculo" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minutos" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modelo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nome do Modelo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Modelo para o registro de criação / atualização. Definir este campo apenas " +"para especificar um modelo diferente do modelo base." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model on which the server action runs." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Meses" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Nota" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Observe que esta ação pode ser disparada até %d minutos após ela ser " +"agendada." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Campos de Disparo em Mudança" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Na criação" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Na criação e atualização" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Em Exclusão" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Na atualização" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Texto de ajuda opcional para os usuários, com uma descrição da visão de " +"destino, e de sua utilização e finalidade." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Forneça o campo usado para vincular o registro recém-criado ao registro " +"usado pela ação do servidor." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Código python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsável" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Ação de Servidor" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Ações no Servidor" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Definir um valor torna esta ação disponível na barra lateral para o modelo " +"fornecido." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Configure uma nova automação automatizada" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Resumo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Modelo de Destino" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nome do Modelo de Destino" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Nome técnico do usuário no registro" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"O \"%(trigger_value)s\" %(trigger_label)s pode ser utilizado apenas com o " +"tipo de ação \"%(state_value)s\" " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"A ação será acionada se e somente se um desses campos for atualizado. Se " +"estiver vazio, todos os campos serão monitorados." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"O erro ocorreu durante a execução da ação automatizada\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Disparo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Data de Disparo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Campos de Acionamento" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Uso" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Use 'Usuário específico' para atribuir sempre o mesmo usuário na próxima " +"atividade. Use 'Usuário genérico do registro' para especificar o nome do " +"campo do usuário a ser escolhido no registro." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Usar agenda" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Use ações automatizadas para acionar ações automaticamente para\n" +" várias telas. Exemplo: um lead criado por um usuário específico pode\n" +" ser definido automaticamente para uma equipe de vendas específica, ou uma\n" +" oportunidade que ainda tem status pendente após 14 dias pode\n" +" acionar um lembrete automático por e-mail." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Nome do campo do usuário" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapeando Valor" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Quando calculando uma condição temporizada baseada em dia, é possível usar " +"um calendário para calcular a data com base em dias úteis." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Ao lidar com várias acções, a ordem de execução baseia-se na sequência. " +"Baixo número significa alta prioridade." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Quando deve ser a condição de ser acionada. Se estiver presente, será " +"verificado pelo programador. Se estiver vazio, será verificado no momento da" +" criação e atualização." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Quando desmarcado, esta regra é oculta e não será executada." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Você pode pedir a um administrador para desabilitar ou corrigir esta ação " +"automatizada." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Você pode desativar essa ação automatizada ou editá-la para resolver o " +"problema." diff --git a/addons/base_automation/i18n/ro.po b/addons/base_automation/i18n/ro.po new file mode 100644 index 00000000..69fb2718 --- /dev/null +++ b/addons/base_automation/i18n/ro.po @@ -0,0 +1,627 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Hongu Cosmin <cosmin513@gmail.com>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Descriere acțiune" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Nume acțiune" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Acțiune de efectuat" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tipul acțiunii" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Activ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Activitate" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Activitate Tip Utilizator" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Adaugă canale" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Adaugă interesați" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr " Aplică pe " + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arhivat" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Acțiune automată " + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Acțiuni Automate" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizare" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Bazat pe o condiție de timp" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Înainte de actualizare domeniu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Model legare" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Tip Legare" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Tip Vizualizare Legare" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Acțiuni subordonate" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Creat în" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Zile" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Întârziere după data declanșării. \n" +"Puteți pune un număr negativ dacă aveți nevoie de o întârziere înainte de data declanșării, cum ar fi trimiterea unui memento cu 15 minute înaintea unei ședințe." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Intarziere dupa data declansarii" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tip intarziere" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Data scadenței în" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tip scadență" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Șablon email" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "ID extern" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Câmpuri care declanșează schimbarea." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupuri" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Ore" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID-ul acțiunii, dacă este definit într-un fișier XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Dacă este prezent, această condiție trebuie să fie îndeplinită înainte de a " +"executa regula acțiunii." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Daca este prezenta, aceasta conditie trebuie indeplinita inaintea " +"actualizarii inregistrarii." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Ultima executare" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare pe" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Minima întârziere Msg" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Câmp de legătură" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minute" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Nume model" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model pentru crearea / actualizarea înregistrărilor. Setați acest câmp doar " +"pentru a specifica un model diferit de modelul de bază." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model pe care se execută acțiunea serverului." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Luni" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Notă" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "La Creare" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "La Creeare & Actualizare" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "La ștergere" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "La Actualizare" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Text optional de ajutor pentru utilizatori cu o descriere a vizualizarii " +"tinta, cum ar fi utilizarea si scopul lui." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Furnizați câmpul utilizat pentru a conecta înregistrarea recent creată la " +"înregistrarea utilizată de acțiunea serverului." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Cod Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Responsabil" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Secvență" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Acțiune server" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Acțiuni server" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Setarea unei valori face această acțiune disponibilă în bara laterală pentru" +" modelul dat." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Sumar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Modelul țintă" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Nume model țintă" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Numele tehnic al utilizatorului din înregistrare" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Acțiunea va fi declanșată dacă și numai dacă unul dintre aceste câmpuri este" +" actualizat. Dacă este gol, toate câmpurile sunt urmărite." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Declansati" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Data declansarii" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Câmpuri de declanșare" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Tipul acțiunii serverului. Sunt disponibile următoarele valori:\n" +"- „Execute Python Code”: un bloc de cod python care va fi executat\n" +"- „Create”: creați o înregistrare nouă cu valori noi\n" +"- 'Update a Record': actualizați valorile unei înregistrări\n" +"- 'Execute several actions': definiți o acțiune care declanșează mai multe alte acțiuni server\n" +"- 'Send Email': trimite automat un e-mail (Discută)\n" +"- 'Add Followers': adăugați adepți într-o înregistrare (Discutați)\n" +"- 'Create Next Activitate': creați o Activitate (Discutați)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Utilizare" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Utilizați „Utilizator specific” pentru a aloca întotdeauna același " +"utilizator la următoarea activitate. Utilizați „Utilizator generic din " +"înregistrare” pentru a specifica numele câmpului utilizatorului pe care îl " +"alegeți în înregistrare." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Utilizează Calendar" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Numele câmpului de utilizator" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Valoare Mapare" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Atenție" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"La calcularea o condiție pe baza de date calendaristice, este posibil să se " +"utilizeze un calendar pentru a calcula data pe baza de zile lucrătoare." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Atunci când aveți de-a face cu mai multe acțiuni, ordinea de execuție se " +"bazează pe secvență. Număr redus înseamnă prioritate mare" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" +"Atunci cand nu este selectata, regula este ascunsa si nu va fi executata." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Scrieți codul Python pe care îl va executa acțiunea. Unele variabile sunt " +"disponibile pentru utilizare; ajutor despre expresia pitonului este oferit " +"în fila ajutor." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/ru.po b/addons/base_automation/i18n/ru.po new file mode 100644 index 00000000..74f9f685 --- /dev/null +++ b/addons/base_automation/i18n/ru.po @@ -0,0 +1,634 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Sergey Vilizhanin, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2021\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Описание действия" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Название действия" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Действие для выполнения" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Тип действия" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Активно" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Мероприятие" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Тип действия пользователя" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Добавить каналы" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Добавить подписчиков" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Применить для" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Заархивировано" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Автоматизированное действие" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Автоматические действия" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Автоматизация" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Базовое правило действия: проверить и выполнить" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Основанный на модификации форм" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Основанный на временном условии" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Перед обновлением домена" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Связанная модель" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Связанный Тип" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Подчиненные действия" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Действия дочернего сервера, которые будут выполнены. Следует отметить, что " +"последний возврат значения возвращаемого действия будет использоваться в " +"качестве глобального возвращаемого значения." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Создал" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Создан" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Дней" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Задержка после даты триггера.\n" +" Вы можете поместить отрицательное число, если вам нужна задержка перед датой\n" +" триггера, например, отправление напоминания за 15 минут до начала совещания." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Задержка после даты активации" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Тип задержки" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Дата исполнения в" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Тип исполнения" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Шаблон письма" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Внешний ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Группы" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Часы" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "Идентификатор" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID действия, если он определен в файле XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"В случае присутствия, это условие должно быть удовлетворено до выполнения " +"правила действия." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"В случае присутствия, это условие должно быть удовлетворено до обновления " +"записи." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Последнее выполнение" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновил" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Минуты" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Модель" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Название модели" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Модель для создания / обновления записей. Установите это поле только для " +"указания другой модели, не базовой." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Модель, на которой выполняется действие сервера." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Месяцы" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Заметка" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Триггер, срабатывающий при изменении поля" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "В процессе создания" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "В процессе создания и обновления" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Удаляется" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Обновляется" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Дополнительный текст помощи для пользователей с описанием целевого " +"представления, например, его использования или предназначения." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Код на Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Ответственный" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Нумерация" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Действие сервера" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Действия сервера" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Установка значения делает это действие доступна на боковой панели для данной" +" модели." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Настройте новую автоматизацию" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Описание" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Целевая модель" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Название целевой модели" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Техническое название пользователя, записывается" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"`%(trigger_value)s `%(trigger_label)s может использоваться только с " +"`%(state_value)s ` типом действия" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Триггер" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Дата активации" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Тип действия сервера. Доступны следующие значения: - `Выполнить код Python`:" +" блок кода python, который будет выполнен - `Создать`: создать запись с " +"новыми значениями - `Обновить запись`: обновить значение записи - `Выполнить" +" несколько действий ': определить действие, которое запускает несколько " +"других действий сервера - `Отправить Email`: автоматически отправить " +"сообщение (обсуждение) - `Добавить подписчиков`: добавить подписчиков к " +"записи (обсуждение) - `создать следующее действие ': создать действие " +"(обсуждение)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Использование" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Используйте `Конкретного пользователя`, чтобы всегда назначать одного и того" +" же пользователя на следующей действия. Используйте 'Общего пользователя из " +"записи `, чтобы указать имя поля пользователя для выбора записи." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Используйте календарь" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Используйте автоматические действия для различных экранов. Примеры: лид, " +"созданный определенным пользователем, может быть автоматически назначен " +"определенной команде продаж; для коммерческого предложения, которое " +"находится в статусе ожидания больше 14 дней, можно сделать автоматическое " +"напоминание по электронной почте." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Название поля пользователя" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Структура значений" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Предупреждение" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"При расчете временного условия, основанного на днях, можно использовать " +"календарь, чтобы вычислить дату на основе рабочих дней." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"При работе с несколькими действиями порядок выполнения основан на " +"последовательности. Низкое значение означает высокий приоритет." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Когда срабатывает условие.\n" +" Если оно присутствует, будет проверяться планировщиком. Если параметр пуст, будет проверяться на создание и обновление." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "При отсутствии проверки правило скрывается и не будет выполняться." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Напишите код Python, который будет выполнен. Некоторые переменные доступны " +"для использования; помощь в выражения python приведены на вкладке справки." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/si.po b/addons/base_automation/i18n/si.po new file mode 100644 index 00000000..3221bc31 --- /dev/null +++ b/addons/base_automation/i18n/si.po @@ -0,0 +1,584 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/sk.po b/addons/base_automation/i18n/sk.po new file mode 100644 index 00000000..87875cf4 --- /dev/null +++ b/addons/base_automation/i18n/sk.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Matus Krnac <matus.krnac@gmail.com>, 2020 +# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Popis akcie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Názov akcie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Úloha, ktorú treba urobiť" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Typ akcie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktívne" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivita" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Aktivita typu užívateľa" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Pridať kanály" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Pridať odberateľov" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Použiť" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Archivovaný" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Automatizovaná akcia" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatizované akcie" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Automatizácia" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Základné pravidlo akcie: skontrolujte a vykonajte" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Založené na úprave formulára" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Založené na časovanej podmienke" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Pred aktualizáciou domény" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Väzbový model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Typ väzby" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Typy záväzných pohľadov" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Podriadené akcie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Podriadené akcie servera, ktoré budú vykonané. Všimnite si, že posledný " +"návrat vrátil hodnotu akcie a hodnota sa použije ako globálna návratná " +"hodnota" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dni" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Oneskorenie po dátume spustenia.\n" +"Ak potrebujete oneskorenie pred zadaním čísla, môžete zadať záporné číslo\n" +"dátum spustenia, napríklad odoslanie pripomienky 15 minút pred schôdzou." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Meškanie po dátume spustenia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Typ meškania" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Zakázať činnosť" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Zakázanie tejto automatizovanej akcie vám umožní pokračovať v pracovnom postupe\n" +"ale všetky údaje vytvorené po tomto môžu byť potenciálne poškodené,\n" +"pretože efektívne deaktivujete prispôsobenie, ktoré sa môže nastaviť\n" +"dôležité a / alebo povinné polia." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Dátum splatnosti za" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Typ splatnosti" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Upraviť akciu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Šablóna emailu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Externé ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Polia, ktoré spustia výmenu." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Skupiny" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Hodiny" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID akcia ak je definované v XML súbore" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Ak prítomné, táto podmienka musí byť naplnená pred vykonaním pravidla akcie." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" +"Ak prítomné, táto podmienka musí byť naplnená pred aktualizáciou záznamu." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Naposledy spustené" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Najmenej oneskorenie Msg" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Pole odkazu" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minúty" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Názov modelu" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model pre vytvorenie / aktualizáciu záznamu. Nastaviť toto pole len pre " +"špecifikáciu iného modelu, než je základný model." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Model, na ktorom beží akcia servera." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Mesiace" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Poznámka" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Upozorňujeme, že túto akciu je možné spustiť až do %d minút po jeho " +"harmonograme." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Spustenie na poliach zmeny" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Pri vytvorení" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Pri vytvorení & aktualizácii" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Pri zmazaní" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Pri aktualizácii" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Nepovinný pomocný text pre používateľov s popisom cieľového pohľadu, ako " +"jeho použitie a účel." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Zadajte pole použité na prepojenie novovytvoreného záznamu so záznamom " +"použitým pri akcii servera." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Kód Pyton" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Zodpovedný" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Postupnosť" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serverová akcia" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Akcie servera" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Nastavenie hodnoty sprístupní túto akciu na bočnom paneli daného modelu." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Nastavenie novej automatizovanej automatizácie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Zhrnutie" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Cieľový model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Cieľový názov modelu" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Technické meno používateľa v zázname" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +" \"%(trigger_value)s\" %(trigger_label)s cmôže byť použitý iba s " +"\"%(state_value)s\" typ akcie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Akcia sa spustí iba vtedy, ak je aktualizované jedno z týchto polí. Ak sú " +"prázdne, sledujú sa všetky polia." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"Počas vykonávania automatizovanej akcie sa vyskytla chyba\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Spúštač" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Dátum spúštača" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Spúšťacie polia" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Typ akcie servera. K dispozícii sú nasledujúce hodnoty:\n" +"- 'Execute Python Code': blok pythonového kódu, ktorý bude vykonaný\n" +"- „Vytvoriť“: vytvorenie nového záznamu s novými hodnotami\n" +"- „Aktualizovať záznam“: aktualizovať hodnoty záznamu\n" +"- „Vykonať niekoľko akcií“: definuje akciu, ktorá spustí niekoľko ďalších akcií servera\n" +"- „Poslať e-mail“: automaticky odošle e-mail (Diskusia)\n" +"- „Pridať sledovateľov“: pridajte sledovateľov do záznamu (Diskusia)\n" +"- „Vytvoriť ďalšiu aktivitu“: vytvoriť aktivitu (Diskusia)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Použitie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Použite 'Špecifického používateľa' pre priradenie toho istého používateľa " +"pri ďalšej aktivite. Pomocou položky „Generic User From Record“ (Všeobecný " +"používateľ zo záznamu) môžete určiť názov poľa, ktoré má užívateľ zvoliť v " +"zázname." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Použiť kalendár" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Použite automatické akcie na automatické spustenie akcií pre\n" +"rôzne obrazovky. Príklad: potenciálny zákazník vytvorený konkrétnym používateľom môže\n" +"byť automaticky nastavený na konkrétny predajný tím alebo\n" +"obchodný prípad, ktorá má stále čakajúci stav aj po 14 dňoch\n" +"spustiť e-mail s automatickým pripomenutím." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Názov poľa užívateľa" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Mapovanie hodnoty" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Varovanie" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Pri výpočte podmienky založenej na dennej báze, je možné použiť kalendár pre" +" výpočet dátumu na základe pracovných dní." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Pokiaľ sa jedná o viac akcií, poradie vykonania je založené na sekvencii. " +"Nízke číslo znamená vysokú prioritu." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Kedy by sa mala spustiť podmienka.\n" +"Ak existuje, bude skontrolovaný plánovačom. Ak je prázdny, bude skontrolovaný pri vytváraní a aktualizácii." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Ak nezaškrtnuté, pravidlo je skryté a nebude vykonané." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Napíšte Python kód, ktorý bude spúšťať akcie. Niektoré premenné sú k " +"dispozícii na použitie; nápoveda o Pyhon výrazoch je uvedená v záložke " +"pomocníka." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Môžete požiadať správcu, aby túto automatickú akciu zakázal alebo opravil." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Túto automatickú akciu môžete zakázať alebo ju upraviť, aby ste problém " +"vyriešili." diff --git a/addons/base_automation/i18n/sl.po b/addons/base_automation/i18n/sl.po new file mode 100644 index 00000000..adb1631c --- /dev/null +++ b/addons/base_automation/i18n/sl.po @@ -0,0 +1,611 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# Dejan Sraka <dejan.sraka@picolabs.si>, 2021 +# laznikd <laznik@mentis.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Opis ukrepa" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Naziv dejanja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Načrtovana dejanja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Tip dejanja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktivno" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivnost" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Dodaj kanale" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Dodaj sledilce" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Uporabi na" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arhivirano" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Avtomatsko dejanje" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Avtomatska dejanja" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Avtomatizacija" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Na osnovi časovnih pogojev" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Pred posodobitvijo domene" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Podrejena dejanja" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Podrejena strežniška dejanja, ki bodo izvedena. Zadnja vrnjena vrednost " +"dejanja bo uporabljena kot globalna povratna vrednost." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dni" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Zamik po datumu izvedbe" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tip zamika" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Datum zapadlosti v" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Vrsta zapadlosti" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Predloga e-pošte" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Zunanji ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Skupine" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Ure" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID dejanja določenega v XML datoteki" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Če je prisotno, mora biti ta pogoj izpolnjen pred izvršbo pravila ukrepa." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "Če je prisoten, mora biti ta pogoj izveden pred spremembo zapisa." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Zadnji zagon" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minute" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Naziv modela" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model za ustvarjanje ali posodabljanje zapisov. To polje nastavite le, da bi" +" določili drugačen model kot je osnovni." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Meseci" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Opomba" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Ob nastanku" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Ob nastanku in posodobitvi" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Ob posodobitvi" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Opcijski teksti pomoči za uporabnike z opisi ciljnega prikaza, kot so " +"uporaba in namen." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python koda" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Odgovoren" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Zaporedje" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Strežniško dejanje" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Strežniška dejanja" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Nastavite novo avtomatizirano avtomatizacijo" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Povzetek" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Ciljni model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Sprožilec" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Sproženo dne" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Uporaba" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Uporabi koledar" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Za samodejno sprožitev dejanj za različne zaslone uporabite\n" +" samodejna dejanja. Primer: potencialni uporabnik, ki ga ustvari določen uporabnik,\n" +" je lahko samodejno nastavljen na določeno prodajno skupino ali\n" +" pa priložnost, ki po 14 dneh še vedno čaka na stanje,\n" +" lahko sproži samodejno opozorilo po e-pošti.\n" +" " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Kartiranje vrednosti" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Opozorilo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Ob izračunu časovnega pogoja na osnovi dneva, je mogoče uporabiti koledar za" +" izračun datuma na osnovi delovnih dni." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Ob ukvarjanju z več dejanji, je vrstni red osnovan na zaporedju. Nižja " +"številka pomeni višjo prioriteto." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Če ni označeno, je pravilo skrito in ne bo izvedeno." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/sq.po b/addons/base_automation/i18n/sq.po new file mode 100644 index 00000000..e55ffa81 --- /dev/null +++ b/addons/base_automation/i18n/sq.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "E Anulluar" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Krijuar nga" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Krijuar me" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Emri i paraqitur" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Modifikimi i fundit në" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Modifikuar per here te fundit nga" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Modifikuar per here te fundit me" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Partner" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Sekuencë" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Statusi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" diff --git a/addons/base_automation/i18n/sr.po b/addons/base_automation/i18n/sr.po new file mode 100644 index 00000000..f44c030c --- /dev/null +++ b/addons/base_automation/i18n/sr.po @@ -0,0 +1,656 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2018 +# Slobodan Simić <slsimic@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:49+0000\n" +"PO-Revision-Date: 2018-10-08 06:49+0000\n" +"Last-Translator: Slobodan Simić <slsimic@gmail.com>, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Назив радње" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Урадити" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Врста радње" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__active +msgid "Active" +msgstr "Активно" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Активност" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatske akcije" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Automated Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Automated Rule Test" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Otkazano" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test__customer +msgid "" +"Check this box if this contact is a customer. It can be selected in sales " +"orders." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "Zatvoren" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "Dani" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__deadline +msgid "Deadline" +msgstr "Krajnji Rok" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Kasnjenje nakon datuma okidaca" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Tip Kasnjenja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Sablon Poruka" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "Sati" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "U Progresu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__date_action_last +msgid "Last Action" +msgstr "Poslednja Akcija" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test____last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__lead_id +msgid "Lead" +msgstr "Trag" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "Minuti" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Model Description" +msgstr "Opis modela" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Naziv modela" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "Meseci" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__name +msgid "Name" +msgstr "Ime" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Novi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Napomena" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Opcioni tekst pomoći za korisnike sa opisom ciljnog pregleda, kao što su " +"korišćenje i svrha." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "U toku" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__priority +msgid "Priority" +msgstr "Prioritet" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record on " +"used by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python kod" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__user_id +msgid "Responsible" +msgstr "Odgovoran" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +msgid "Scheduled Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Niz" + +#. module: base_automation +#: selection:ir.actions.server,usage:0 +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Akcija servera" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Akcije servera" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__state +msgid "Status" +msgstr "Status" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test__name +msgid "Subject" +msgstr "Predmet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Pregled" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:87 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Datum okidanja" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Koriscenje" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test__user_id +msgid "User" +msgstr "Korisnik" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:86 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" diff --git a/addons/base_automation/i18n/sr@latin.po b/addons/base_automation/i18n/sr@latin.po new file mode 100644 index 00000000..aae040a3 --- /dev/null +++ b/addons/base_automation/i18n/sr@latin.po @@ -0,0 +1,579 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Djordje Marjanovic <djordje_m@yahoo.com>, 2017 +# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017 +# Martin Trigaux <mat@odoo.com>, 2017 +# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-02 11:26+0000\n" +"PO-Revision-Date: 2017-10-02 11:26+0000\n" +"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\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: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_name +msgid "Action Name" +msgstr "Naziv akcije" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_state +msgid "Action To Do" +msgstr "Za Uraditi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_type +msgid "Action Type" +msgstr "Tip Akcije" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_active +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_active +msgid "Active" +msgstr "Aktivan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_is_assigned_to_admin +msgid "Assigned to admin user" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatske Akcije" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_recursive +#: model:ir.actions.server,name:base_automation.test_rule_recursive_ir_actions_server +msgid "Base Automation: test recursive rule" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_create +#: model:ir.actions.server,name:base_automation.test_rule_on_create_ir_actions_server +msgid "Base Automation: test rule on create" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_recompute +#: model:ir.actions.server,name:base_automation.test_rule_on_recompute_ir_actions_server +msgid "Base Automation: test rule on recompute" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_line +#: model:ir.actions.server,name:base_automation.test_rule_on_line_ir_actions_server +msgid "Base Automation: test rule on secondary model" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write +#: model:ir.actions.server,name:base_automation.test_rule_on_write_ir_actions_server +msgid "Base Automation: test rule on write" +msgstr "" + +#. module: base_automation +#: model:base.automation,name:base_automation.test_rule_on_write_check_context +#: model:ir.actions.server,name:base_automation.test_rule_on_write_check_context_ir_actions_server +msgid "Base Automation: test rule on write check context" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Cancelled" +msgstr "Poništeno" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Click to setup a new automated automation." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Closed" +msgstr "Zatvoren" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_id +msgid "Create/Write Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_create_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Days" +msgstr "Dani" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_deadline +msgid "Deadline" +msgstr "Krajnji Rok" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range +msgid "Delay after trigger date" +msgstr "Kasnjenje nakon datuma okidaca" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_range_type +msgid "Delay type" +msgstr "Tip Kasnjenja" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_display_name +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_template_id +msgid "Email Template" +msgstr "Šablon poruka" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_xml_id +msgid "External ID" +msgstr "Externi ID" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Hours" +msgstr "Sati" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "In Progress" +msgstr "U toku" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_date_action_last +msgid "Last Action" +msgstr "Poslednja Akcija" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test___last_update +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test___last_update +msgid "Last Modified on" +msgstr "Zadnja promena" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_uid +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_uid +msgid "Last Updated by" +msgstr "Promenio" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_write_date +#: model:ir.model.fields,field_description:base_automation.field_base_automation_write_date +msgid "Last Updated on" +msgstr "Vreme promene" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_lead_id +msgid "Lead" +msgstr "Trag" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_line_ids +msgid "Line" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_link_field_id +msgid "Link using field" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Minutes" +msgstr "Minute" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_id +#: model:ir.model.fields,field_description:base_automation.field_base_automation_model_name +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_crud_model_name +msgid "Model Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: selection:base.automation,trg_date_range_type:0 +msgid "Months" +msgstr "Meseci" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_name +msgid "Name" +msgstr "Naziv" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "New" +msgstr "Novi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: selection:base.automation,trigger:0 +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_partner_id +msgid "Partner" +msgstr "Partner" + +#. module: base_automation +#: selection:base.automation.lead.test,state:0 +msgid "Pending" +msgstr "Na čekanju" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_priority +msgid "Priority" +msgstr "Prioritet" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_link_field_id +msgid "" +"Provide the field used to link the newly created recordon the record on used" +" by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_code +msgid "Python Code" +msgstr "Python kod" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove Action" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Remove the contextual action related to this server action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_user_id +msgid "Responsible" +msgstr "Odgovoran" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_sequence +msgid "Sequence" +msgstr "Prioritet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_action_server_id +msgid "Server Actions" +msgstr "Akcije Servera" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_state +msgid "Status" +msgstr "Status" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_lead_test_name +msgid "Subject" +msgstr "Subjekat" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trigger +msgid "Trigger Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_id +msgid "Trigger Date" +msgstr "Datum Okidanja" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" +"- 'Write on a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Add Followers': add followers to a record (available in Discuss)\n" +"- 'Send Email': automatically send an email (available in email_template)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_usage +msgid "Usage" +msgstr "Upotreba" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific sales channel, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_line_test_user_id +msgid "User" +msgstr "Korisnik" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation_fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation_code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about pyhon expression is given in the help tab." +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "ir.actions.server" +msgstr "ir.actions.server" diff --git a/addons/base_automation/i18n/sv.po b/addons/base_automation/i18n/sv.po new file mode 100644 index 00000000..3a75b0a2 --- /dev/null +++ b/addons/base_automation/i18n/sv.po @@ -0,0 +1,592 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Kristoffer Grundström <lovaren@gmail.com>, 2021 +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Martin Wilderoth <martin.wilderoth@linserv.se>, 2021 +# Chrille Hedberg <hedberg.chrille@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Chrille Hedberg <hedberg.chrille@gmail.com>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Åtgärdsnamn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Åtgärd att utföra" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Åtgärdstyp" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivitet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Lägg till kanaler" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Lägg till följare" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arkiverad" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Automatiserade händelser" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Dagar" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Ledtid efter utlösningsdatum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Ledtidstyp" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-postmall" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Externt ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Grupper" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Timmar" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Senaste körning" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Minuter" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Modell" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Modellnamn" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Månader" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Anteckning" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Pythonkod" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Ansvarig" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Serveraktivitet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Serveråtgärder" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Sammandrag" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Trigger" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Utlösningsdatum" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Användning" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Varning" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/ta.po b/addons/base_automation/i18n/ta.po new file mode 100644 index 00000000..060baf29 --- /dev/null +++ b/addons/base_automation/i18n/ta.po @@ -0,0 +1,481 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_action_rule +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2016-06-01 13:21+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n" +"Language: ta\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: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "<b>Please choose the document type before setting the conditions.</b>" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_tree +msgid "Action Rule" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_line_test +msgid "Action Rule Line Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "Action Rule Test" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule +msgid "Action Rules" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Actions" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_active +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_active +msgid "Active" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_followers +msgid "Add Followers" +msgstr "" + +#. module: base_action_rule +#: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act +#: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form +msgid "Automated Actions" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Form Modification" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_pre_id +msgid "Before Update Filter" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Check this box if this contact is a customer." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "Click to setup a new automated action rule." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_on_change_fields +msgid "Comma-separated list of field names that triggers the onchange." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Conditions" +msgstr "நிபந்தனைகள்" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_date +msgid "Create Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_uid +msgid "Created by" +msgstr "உருவாக்கியவர்" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_create_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_create_date +msgid "Created on" +msgstr "" +"உருவாக்கப்பட்ட \n" +"தேதி" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Days" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Delay After Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_range +msgid "" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_display_name +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_display_name +msgid "Display Name" +msgstr "காட்சி பெயர்" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_domain +msgid "Domain" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_server_action_ids +msgid "Examples: email reminders, call object service, etc." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Fields to Change" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_filter_id +msgid "Filter" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_sequence +msgid "Gives the sequence order when displaying a list of rules." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Go to your \"Related Document Model\" page and set the filter parameters in " +"the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Hours" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_id +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_id +msgid "ID" +msgstr "ID" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_id +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_domain +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_filter_pre_id +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"In this same \"Search\" view, select the menu \"Save Current Filter\", enter " +"the name (Ex: Create the 01/01/2012) and add the option \"Share with all " +"users\"" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_customer +msgid "Is a Customer" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_date_action_last +msgid "Last Action" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test___last_update +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test___last_update +msgid "Last Modified on" +msgstr "கடைசியாக திருத்திய" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_last_run +msgid "Last Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_uid +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_uid +msgid "Last Updated by" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_write_date +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_write_date +msgid "Last Updated on" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_lead_id +msgid "Lead id" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Minutes" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model +msgid "Model" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_name +msgid "Name" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_on_change_fields +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Creation & Update" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Deletion" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,kind:0 +msgid "On Update" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_partner_id +msgid "Partner" +msgstr "கூட்டாளி" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_model_id +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_user_id +msgid "Responsible" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_name +msgid "Rule Name" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"Select when the action must be run, and choose records and/or timing " +"conditions." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_sequence +msgid "Sequence" +msgstr "வரிசை" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_server_action_ids +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server Actions" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Server actions to run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_act_user_id +msgid "Set Responsible" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_state +msgid "Status" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_name +msgid "Subject" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_done +msgid "Test lead in state 'done'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_draft +msgid "Test lead in state 'draft'" +msgstr "" + +#. module: base_action_rule +#: model:ir.filters,name:base_action_rule.test_filter_open +msgid "Test lead in state 'open'" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user " +"may\n" +" be automatically set to a specific sales team, or an\n" +" opportunity which still has status pending after 14 days " +"might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_line_test_user_id +msgid "User id" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_trg_date_id +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_kind +msgid "When to Run" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,help:base_action_rule.field_base_action_rule_active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: model_terms:ir.ui.view,arch_db:base_action_rule.view_base_action_rule_form +msgid "" +"You may also use filters instead of choosing records. In order to create a " +"new filter:" +msgstr "" + +#. module: base_action_rule +#: model:ir.model.fields,field_description:base_action_rule.field_base_action_rule_lead_test_line_ids +msgid "unknown" +msgstr "" diff --git a/addons/base_automation/i18n/th.po b/addons/base_automation/i18n/th.po new file mode 100644 index 00000000..1be0b3f2 --- /dev/null +++ b/addons/base_automation/i18n/th.po @@ -0,0 +1,600 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2020 +# gsong <gsong2014@foxmail.com>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "รายละเอียด" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "ชื่อการกระทำ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "สิ่งที่จะทำ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "ชนิดการทำงาน" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "เปิดใช้งาน" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "กิจกรรม" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Activity User Type" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "เพิ่มช่องทาง" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "เพิ่มผู้ติดตาม" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "เก็บถาวร" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "การกระทำอัตโนมัติ" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "การทำงานอัตโนมัติ" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "แบบ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "ประเภท" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Child Actions" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "วัน" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "แม่แบบอีเมล" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "รหัสจากภายนอก" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "กลุ่ม" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "ชั่วโมง" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "รหัส" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID of the action if defined in a XML file" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "นาที" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "โมเดล" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "ชื่อโมเดล" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "เดือน" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "โน้ต" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Code" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "รับผิดชอบ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "ลำดับ" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Server Action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "การดำเนินการของเซิร์ฟเวอร์" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"การตั้งค่าทำให้การดำเนินการนี้พร้อมใช้งานในแถบด้านข้างสำหรับรุ่นที่กำหนด" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "สรุป" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Target Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "ตัวกระตุ้น" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "การใช้งานการดำเนินการ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Value Mapping" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "คำเตือน" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/tr.po b/addons/base_automation/i18n/tr.po new file mode 100644 index 00000000..a27f9a06 --- /dev/null +++ b/addons/base_automation/i18n/tr.po @@ -0,0 +1,654 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Gökhan Erdoğdu <gokhan.erdogdu@mechsoft.com.tr>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# Yedigen, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Tugay Hatıl <tugayh@projetgrup.com>, 2020 +# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021 +# Ediz Duman <neps1192@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Eylem Açıklama" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "İşlem Adı" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Yapılması Gerekenler" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "İşlem Türü" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Etkin" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Aktivite" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Kullanıcı Aktivite Türü" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Kanal Ekle" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Takipçi Ekle" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Uygula - " + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Arşivlendi" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Otomatik Eylem" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Otomatik İşlemler" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Otomasyon" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Temel İşlem Kuralları: kontrol et ve çalıştır" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Form Değişikliği Tabanlı" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Zamanlı Koşullara Göre" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Güncelleme Alanından Önce" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Bağlantı Modeli" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Bağlantı Türü" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Bağlantı Görünüm Türleri" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Alt Eylemler" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Yürütülecek alt sunucu eylemleri. Geri gönderilen son iade işlemi değerinin " +"genel geri dönüş değeri olarak kullanılacağını unutmayın." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Gün" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Tetikleme tarihinden sonra gecikme. \\ N Tetikleyici tarihten önce, " +"toplantıdan 15 dakika önce bir hatırlatıcı göndermek gibi bir gecikmeye " +"ihtiyacınız varsa, negatif bir sayı koyabilirsiniz." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Tetikleme tarihinden sonra gecikme" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Gecikme türü" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Eylem Devre Dışı" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Bu otomatik eylemi devre dışı bırakmak, iş akışınıza devam etmenizi sağlar\n" +" ancak bundan sonra oluşturulan tüm veriler potansiyel olarak bozulabilir,\n" +" ayarlayabilecek bir özelleştirmeyi etkin bir şekilde devre dışı bıraktığınız için\n" +" önemli ve / veya zorunlu alanlar." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Vade Tarihi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Vade türü" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Eylemi Düzenle" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "E-posta Şablonu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Harici Kimlik" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Fields that trigger the onchange." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Gruplar" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Saat" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "Bir XML dosyasında tanımlıysa, eylemin kimliği" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Varsa, eylem kuralını uygulamadan önce bu koşulun yerine getirilmesi " +"gerekir." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "Varsa, kayıt güncelleştirilmeden önce bu koşula uyulmalıdır." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Son Çalıştır" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Least Delay Msg" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Link Field" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Dakika " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Model Adı" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Kayıt oluşturma / güncelleme modeli. Bu alanı yalnızca temel modelden farklı" +" bir model belirlemek için ayarlayın." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Sunucunun çalıştığı model." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Ay" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Not" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Note that this action can be trigged up to %d minutes after its schedule." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Değişiklik Alanlarında Tetikleyici" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Yaratılış Üzerine" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Yaratılış ve Güncelleme Hakkında" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Silme İşlemi Üzerine" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Güncelleştirildiğinde" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Kullanıcılar için, kullanım ve amaç gibi, hedef görünümün açıklamasıyla " +"birlikte isteğe bağlı yardım metni." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Provide the field used to link the newly created record on the record used " +"by the server action." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python Kodu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Sorumlu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Sıra" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Sunucu Eylemi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Sunucu İşlemleri" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Bir değer ayarlamak, bu hareketi verilen modelin kenar çubuğunda " +"kullanılabilir duruma getirir." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Yeni bir otomasyon ayarlayın" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Özet" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Hedef Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Kaynak Model Adı" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Kaydın üzerindeki kullanıcının teknik adı" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"\"%(trigger_value)s\" %(trigger_label)s sadece \"%(state_value)s\" eylem " +"türü ile kullanılabilir" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Yalnızca bu alanlardan biri güncellenirse eylem tetiklenir. Boşsa, tüm " +"alanlar izlenir." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"Otomatik eylemin yürütülmesi sırasında hata oluştu\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Tetik" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Tetikleyici Tarihi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Trigger Fields" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Sunucu eylemi türü. Aşağıdaki değerler mevcuttur:\n" +"- 'Python Kodunu Yürüt': yürütülecek bir python kodu bloğu\n" +"- 'Oluştur': yeni değerlerle yeni bir kayıt oluştur\n" +"- 'Bir Kaydı Güncelle': bir kaydın değerlerini günceller\n" +"- 'Birkaç işlemi yürüt': diğer birkaç sunucu işlemini tetikleyen bir eylem tanımlayın\n" +"- 'E-posta Gönder': otomatik olarak bir e-posta gönder (Tartışma)\n" +"- 'Takipçi Ekle': bir kayda takipçi ekleyin (Tartışın)\n" +"- 'Sonraki Etkinlik Oluştur': etkinlik oluştur (Tartışma)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Kullanımı" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Gelecek eyleme aynı kullanıcıyı atamak için her zaman 'Özel Kullanıcı'yı " +"kullanın. Kayıtta seçilecek kullanıcının alan adını belirlemek için " +"'Kayıttan Genel Kullanıcı' seçeneğini kullanın." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Takvim'i kullanın" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Çeşitli ekranlarda otomatik olarak eylemleri tetiklemek için \n" +"otomatik eylemler kullanın. Örnek: Belirli bir kullanıcı tarafından oluşturulan bir yol,\n" +" belirli bir satış ekibine, \n" +"otomatik olarak ayarlanabilir veya 14 gün sonra durumu hala bekleyen bir\n" +"fırsat otomatik hatırlatma e-postasını tetikleyebilir." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Kullanıcı alan adı" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Değer Eşleme" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "İkaz" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Güne dayalı zamanlanmış bir koşul hesaplanırken, tarihi iş günlerine göre " +"hesaplamak için bir takvim kullanmak mümkündür." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Birden fazla eylemle uğraşırken, yürütme sırası sıraya bağlıdır. Düşük sayı " +"yüksek öncelik anlamına gelir." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Durum ne zaman tetiklenmelidir. \\ N Varsa, zamanlayıcı tarafından kontrol " +"edilecektir. Boş ise, oluşturma ve güncelleme sırasında kontrol edilecektir." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "İşaretlenmemişse kural gizlidir ve yürütülmez." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Python kod yazmak eylemi çalıştırır. Bazı değişkenler kullanılabilir; python" +" ifade ile ilgili yardım yardım sekmesinde verilir." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Yöneticiden bu otomatik eylemi devre dışı bırakmasını veya düzeltmesini " +"isteyebilirsiniz." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Bu otomatik eylemi devre dışı bırakabilir veya sorunu çözmek için " +"düzenleyebilirsiniz." diff --git a/addons/base_automation/i18n/uk.po b/addons/base_automation/i18n/uk.po new file mode 100644 index 00000000..e9b77eac --- /dev/null +++ b/addons/base_automation/i18n/uk.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Bohdan Lisnenko, 2020 +# ТАрас <tratatuta@i.ua>, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Опис дії" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Назва дії" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Необхідна дія" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Тип дії" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Активно" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Дія" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Тип дії користувача" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Додати канали" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Додати підписників" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Подати заявку на" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Заархівовано" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Автоматизована дія" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Дія" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Автоматизація" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Базове правило дії: перевірити та виконати" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "На підставі модифікації форми" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "На основі умовного часу" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Перед оновленням домену" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Модель зв'язування" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Тип зв'язування" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Зв'язування типів представлення" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Дочірні дії" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Дочірні серверні дії, які буде виконано. Занотуйте, що останнє повернене " +"значення буде використано як глобальне повернене значення." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Створено" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Створено" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Дні" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Затримка після дати запуску.\n" +"Ви можете поставити негативне число, якщо вам потрібна затримка до\n" +"дати запуску, наприклад, надсилання нагадування за 15 хвилин до зустрічі." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Затримка після дати запуску" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Тип затримки" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Відключити дію" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Відключення цієї автоматизованої дії дозволить вам продовжити ваш робочий процес\n" +" але будь-які дані, створені після цього, потенційно можуть бути пошкоджені,\n" +" оскільки ви фактично вимикаєте налаштування, яке може встановлювати\n" +" важливі та/або необхідні поля." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Дата виконання в" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Тип виконання" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Редагувати дію" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Шаблон електронного листа" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "Зовнішній ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Поля, які запускають зміну." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Групи" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Години" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID дії, якщо зазначене у файлі XML " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "Якщо є, ця умова повинна бути виконана до виконання правила дій." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "Якщо є, ця умова повинна бути виконана до оновлення запису." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Останній запуск" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Спов. останньої затримки" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Зв'язати поле" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Хвилини" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Модель" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Назва моделі" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Модель для створення / оновлення записів. Встановлюється тільки для точного " +"визначення моделі, відмінної від базової." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Модель, на якій виконується дія сервера." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Місяці" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Примітка" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Занотуйте, що ця дія може запускатися до %d хвилин після її планування." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Запуск полів для зміни" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "На створення" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "На створення та оновлення" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "При видаленні" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "На оновлення" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Необов'язковий текст довідки для користувачів з описом цільового перегляду, " +"наприклад його використання та призначення." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Вкажіть поле, яке використовується для зв’язку новоствореного запису на " +"записі, який використовується дією сервера." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Код Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Відповідальний" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Послідовність" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Дія на сервері" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Дії на сервері" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Встановлення значення робить цю дію доступною на бічній панелі для даної " +"моделі." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Налаштуйте нову автоматизацію" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Підсумок" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Цільова модель" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Назва цільової моделі" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Технічна назва користувача, що записується" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"\"%(trigger_value)s\" %(trigger_label)s може використовуватися тільки з " +"\"%(state_value)s\" типом дії" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Дія буде спрацьовувати тільки тоді, коли одне з цих полів буде оновлено. " +"Якщо порожньо, усі поля спостерігаються." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"Помилка сталася під час виконання автоматизованої дії\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Запуск" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Дата початку" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Запустити поля" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Тип дії сервера. Доступні наступні значення:\n" +"- 'Виконати код Python': блок коду python, який буде виконано\n" +"- 'Створити': створити запис з новими значеннями\n" +"- 'Оновити запис': оновити значення запису\n" +"- 'Виконати кілька дій': визначити дію, яка запускає кілька інших дій сервера\n" +"- 'Надіслати Email': автоматично надіслати електронний лист (Обговорення)\n" +"- 'Додати підписників': додати підписників до запису (Обговорення)\n" +"- 'Створити наступну дію': створити дію (Обговорення)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Застосування" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Використовуйте \"Конкретного користувача\", щоби завжди призначати одного і " +"того ж користувача на наступній дії. Використовуйте 'Загального користувача " +"із запису', щоби вказати ім'я поля користувача для вибору запису." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Використовувати календар" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Використовуйте автоматичні дії для\n" +" різних екранів. Приклад: лід, створений певним користувачем, може\n" +" автоматично встановлюватися для конкретної команди продажів або\n" +" нагоди, яка має статус очікування після 14 днів\n" +" потрібно запустити автоматичне нагадування електронною поштою." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Назва поля користувача" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Картографічне значення" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Попередження" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Під час обчислення часових умов на основі дня можна скористатись календарем " +"для обчислення дати за робочими днями." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"При вирішенні кількох дій, виконання замовлення базується на послідовності. " +"Низьке число означає високий пріоритет." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Коли спрацює стан.\n" +"Якщо є, буде перевірено планувальником. Якщо порожньо, буде перевірено при створенні та оновленні." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Якщо це не позначено, правило сховане і не буде виконано." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Напишіть код Python, який буде виконано. Деякі змінні доступні для " +"використання; допомогу щодо виразу python наведено на вкладці довідки." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"Ви можете попросити адміністратора вимкнути або виправити цю автоматизовану " +"дію." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" +"Ви можете відключити цю автоматизовану дію або відредагувати її, щоб " +"вирішити проблему." diff --git a/addons/base_automation/i18n/ur.po b/addons/base_automation/i18n/ur.po new file mode 100644 index 00000000..32b3a017 --- /dev/null +++ b/addons/base_automation/i18n/ur.po @@ -0,0 +1,584 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/i18n/vi.po b/addons/base_automation/i18n/vi.po new file mode 100644 index 00000000..09acb988 --- /dev/null +++ b/addons/base_automation/i18n/vi.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# fanha99 <fanha99@hotmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020 +# Dao Nguyen <trucdao.uel@gmail.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "Mô tả hành động" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "Tên hành động" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "Cần thực hiện" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "Kiểu Hành động" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "Có hiệu lực" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "Hoạt động" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "Kiểu tài khoản hoạt động" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "Thêm Kênh theo dõi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "Thêm Người theo dõi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "Áp dụng cho" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "Đã lưu" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "Thực hiện tự động" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "Hành động tự động" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "Tự động hoá" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Quy tắc thực thi cơ bản: kiểm tra và thực thi" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "Dựa trên sửa đổi biểu mẫu" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "Dựa trên điều kiện thời gian" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "Trước khi cập nhật miền" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "Binding Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "Binding Type" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "Loại giao diện Binding" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "Hành động con" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "Thời điểm tạo" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "Ngày" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"Trì hoãn sau ngày kích hoạt.\n" +" Bạn có thể đặt số âm nếu bạn cần độ trễ trước\n" +" ngày kích hoạt, như gửi lời nhắc 15 phút trước cuộc họp." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "Trì hoãn sau ngày kích hoạt" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "Dạng trì hoãn" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "Disable Action" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "Ngày đáo hạn" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "Loại thời hạn" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "Edit action" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Mẫu email" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "External ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "Các trường kích hoạt sự thay đổi." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "Nhóm" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "Giờ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "ID của hành động nếu được xác định trong tệp XML" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "" +"Nếu có, điều kiện này phải được thỏa mãn trước khi thực hiện quy tắc hành " +"động." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "Nếu có, điều kiện này phải được thỏa mãn trước khi cập nhật hồ sơ." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "Chạy gần nhất" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "Ít chậm trễ nhất Msg" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "Trường liên kết" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "Phút" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "Model" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "Tên đối tượng" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "Đối tượng chạy trên máy chủ." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "Tháng" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "Ghi chú" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" +"Note that this action can be trigged up to %d minutes after its schedule." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "Bật trình kích hoạt trường thay đổi" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "Khi tạo" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "Khi tạo & Cập nhật" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "Khi xóa" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "Khi cập nhật" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" +"Văn bản trợ giúp tùy chọn cho người dùng có mô tả về chế độ xem mục tiêu, " +"chẳng hạn như mục đích sử dụng và mục đích của nó." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" +"Cung cấp trường được sử dụng để liên kết bản ghi mới được tạo trên bản ghi " +"được sử dụng bởi hành động máy chủ." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Mã Python" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "Người phụ trách" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "Trình tự" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "Hành động phía Máy chủ" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "Hành động Phía máy chủ" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" +"Đặt giá trị làm cho hành động này có sẵn trong thanh bên cho mô hình đã cho." + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "Thiết lập tự động hóa mới" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "Tổng kết" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "Model mục tiêu" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "Target Model Name" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "Tên kĩ thuật của người dùng trên dữ liệu" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "" +"\"%(trigger_value)s\" %(trigger_label)s chỉ có thể được dùng với loại " +"\"%(state_value)s\" " + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "" +"Hành động sẽ được kích hoạt nếu và chỉ khi một trong các trường này được cập" +" nhật. Nếu trống, tất cả các trường đều được theo dõi." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"The error occurred during the execution of the automated action\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "Bộ khởi động" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "Ngày kích hoạt" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "Trường kích hoạt" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"Loại tác vụ của máy chủ. Dưới đây là các giá trị hiện có:\n" +"- 'Dùng mã Python': thực thi một đoạn mã python\n" +"- 'Tạo': tạo dữ liệu mới với giá trị mới\n" +"- 'Cập nhật dữ liệu': cập nhật dữ liệu\n" +"- 'Thực thi các tác vụ khác': quy định một hành động Kích hoạt các hoạt động khác\n" +"- 'Gửi Email': tự động gửi email (trong Thảo luận)\n" +"- 'Thêm người theo dõi': thêm người theo dõi (trong Thảo luận)\n" +"- 'Tạo hoạt động kế tiếp': tạo hoạt động ( trong Thảo luận)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "Cách dùng" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "" +"Dùng thông tin 'Người dùng cụ thể' để luôn chỉ định cùng một người dùng cho " +"hoạt động tiếp theo. Sử dụng 'Người dùng chung từ dữ liệu' để chỉ định tên " +"trường của người dùng sẽ chọn trên dữ liệu." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "Dùng lịch" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"Sử dụng các hành động tự động để tự động kích hoạt các hành động cho\n" +" màn hình khác nhau. Ví dụ: một khách hàng tiềm năng được tạo bởi một người dùng cụ thể có thể\n" +" được tự động đặt thành Nhóm bán hàng cụ thể hoặc một\n" +" cơ hội vẫn còn tình trạng chờ xử lý sau 14 ngày\n" +" kích hoạt một email nhắc nhở tự động." + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "Tên trường" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "Ánh xạ giá trị" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "Cảnh báo" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "" +"Khi tính toán điều kiện theo thời gian dựa trên ngày, có thể sử dụng lịch để" +" tính toán ngày dựa trên ngày làm việc." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "" +"Khi xử lý nhiều hành động, thứ tự thực hiện dựa trên chuỗi. Số thấp có nghĩa" +" là ưu tiên cao." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"Khi nào thì điều kiện sẽ được kích hoạt.\n" +" Nếu có, sẽ được ghi nhận bởi công cụ chạy tự động. Nếu trống, sẽ được ghi nhận tại hàm tạo và chỉnh sửa." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Khi không được chọn, quy tắc sẽ bị ẩn và sẽ không được thực thi." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" +"You can ask an administrator to disable or correct this automated action." + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "You can disable this automated action or edit it to solve the issue." diff --git a/addons/base_automation/i18n/zh_CN.po b/addons/base_automation/i18n/zh_CN.po new file mode 100644 index 00000000..22df59ce --- /dev/null +++ b/addons/base_automation/i18n/zh_CN.po @@ -0,0 +1,627 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# xiaobin wu <bd5dml@gmail.com>, 2020 +# e2f_cn c5 <jarvisn@ecinnovations.com>, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# wangting <39181819@qq.com>, 2020 +# snow wang <147156565@qq.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.com>, 2020 +# John An <johnxan@163.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# Lin Li <ljsrzc007@gmail.com>, 2020 +# 稀饭~~ <wangwhai@qq.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: 稀饭~~ <wangwhai@qq.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" +"\"\n" +" (ID:" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "动作说明" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "动作名称" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "后置操作" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "动作类型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "有效" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "活动" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "活动用户类型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "添加频道" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "添加关注者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "应用于" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "已存档" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "自动动作" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "自动动作" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "自动化" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "基本动作规则:检查并执行" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "基于表单修改" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "基于时间条件" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "更新前域表达式" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "绑定模型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "绑定类型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "绑定视图类型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "下级动作" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "子服务器将被被激活。注意最后返回动作的值将做用做全局变量。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "天" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"延迟触发日期。\n" +"如果在触发日期你需要一个延迟,\n" +"你可以输入一个负数,如在会议前15分钟发送提醒" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "触发日期后的延迟" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "延迟类型" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "禁用操作" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" +"禁用此自动操作将使您能够继续工作流\n" +" 但在此之后创建的任何数据都可能损坏,\n" +" 由于您正在有效地禁用可能设置的自定义\n" +" 重要字段和/或必需字段。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "截止日期至" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "到期类型" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "编辑操作" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "EMail模板" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "外部 ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "触发一次更改的字段。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "群组" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "小时" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "在 XML 文件中定义的动作的 ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "在执行规则前,此条件必须被满足" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "在更新记录前此条件必须被满足" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "最后更改日" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "最后运行" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "更新时间" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "最小延迟消息" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "链接字段" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "分钟" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "模型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "模型名称" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "记录创建 / 更新的模型。设置此字段仅仅定义了一个与base模型不一样的模型。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "服务器动作运行的模型." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "月" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "备注" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "请注意,此操作最多可在计划后%d分钟触发。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "变化字段的触发器" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "创建时" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "创建以及更新时" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "删除时" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "更新时" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "可选的帮助文本为用户提供目标视图的说明,例如它的用法和用途。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "提供用于将新创建的记录链接到服务器操作使用的记录上的字段。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python 代码" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "负责人" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "序号" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "服务器动作" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "服务器动作" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "设置一个值使得这个动作在给定模型的菜单中可用。" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "建立一个新的自动化系统" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "摘要" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "目标模型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "目标模型名称" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "记录上用户的技术名称" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "这个 \"%(trigger_value)s\" %(trigger_label)s 只能与 \"%(state_value)s\" 动作类型一起使用" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "如果 并且仅在更新这些字段之一时,将触发该操作。如果为空,则监视所有字段。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" +"执行自动操作时出错\n" +" \"" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "触发" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "触发日期" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "触发字段" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"服务器操作的类型。以下值可用:\n" +"- 'Execute Python Code':将执行的 python 代码块\n" +"- 'Create': 使用新值创建新记录\n" +"- 'Update a Record': 更新记录的值\n" +"- 'Execute several actions': 定义触发其他几个服务器操作的操作\n" +"- 'Send Email': 自动发送电子邮件(讨论)\n" +"- 'Add Followers': 将关注者添加到记录(讨论)\n" +"- 'Create Next Activity': 创建活动(讨论)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "用途" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "使用 '特定用户' 总是在下一个活动中分配相同的用户。使用 '记录中的通用用户' 指定在记录上选择的用户的字段名。 " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "使用日历" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"使用自动操作来自动触发操作\n" +" 不同的屏幕。例如:由特定用户创建的线索可以\n" +" 被自动设置为一个特定的销售团队,或者\n" +" 在14天之后仍处于等待状态的机会可以\n" +" 触发一个自动提醒的邮件。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "用户字段名字" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "映射的值" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "当需要基于时间条件做计算时,可以使用日历根据工作日计算日期。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "在处理多个操作时,执行顺序是基于序列。小的数字具有更高的优先级。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"何时触发该条件。\n" +" 如果存在,将由调度程序检查。如果为空,将在创建和更新时检查。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "如果不选中,此规则被隐藏且不被执行" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "编写动作将执行的Python代码。一些变量可供使用;有关python表达式的帮助在帮助页卡中给出。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "您可以要求管理员禁用或更正此自动操作。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "您可以禁用此自动操作或编辑它以解决此问题。" diff --git a/addons/base_automation/i18n/zh_TW.po b/addons/base_automation/i18n/zh_TW.po new file mode 100644 index 00000000..6e98eaa1 --- /dev/null +++ b/addons/base_automation/i18n/zh_TW.po @@ -0,0 +1,607 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_automation +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# amos lin <seeing@edirect168.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: amos lin <seeing@edirect168.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/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: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"\"\n" +" (ID:" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__help +msgid "Action Description" +msgstr "動作說明" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__name +msgid "Action Name" +msgstr "動作名稱" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__state +msgid "Action To Do" +msgstr "待辦的行動" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__type +msgid "Action Type" +msgstr "動作類型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__active +msgid "Active" +msgstr "啟用" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id +msgid "Activity" +msgstr "活動" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type +msgid "Activity User Type" +msgstr "活動使用者類型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__channel_ids +msgid "Add Channels" +msgstr "添加頻道" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids +msgid "Add Followers" +msgstr "添加關注者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain +msgid "Apply on" +msgstr "應用於" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search +msgid "Archived" +msgstr "封存" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation +msgid "Automated Action" +msgstr "自動動作" + +#. module: base_automation +#: model:ir.actions.act_window,name:base_automation.base_automation_act +#: model:ir.ui.menu,name:base_automation.menu_base_automation_form +msgid "Automated Actions" +msgstr "自動的動作" + +#. module: base_automation +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree +msgid "Automation" +msgstr "自動化" + +#. module: base_automation +#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server +#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check +#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check +msgid "Base Action Rule: check and execute" +msgstr "Base Action Rule: check and execute" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change +msgid "Based on Form Modification" +msgstr "根據表單修改" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time +msgid "Based on Timed Condition" +msgstr "根據時間條件" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain +msgid "Before Update Domain" +msgstr "更新前域表達式" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id +msgid "Binding Model" +msgstr "綁定模型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type +msgid "Binding Type" +msgstr "綁定類型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types +msgid "Binding View Types" +msgstr "綁定檢視類型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids +msgid "Child Actions" +msgstr "下級動作" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "子伺服器將被被啟動。注意最後返回動作的值將做用做全局變量。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid +msgid "Created by" +msgstr "創立者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date +msgid "Created on" +msgstr "建立於" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day +msgid "Days" +msgstr "天數" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range +msgid "" +"Delay after the trigger date.\n" +" You can put a negative number if you need a delay before the\n" +" trigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" +"延遲觸發日期。\n" +"如果在觸發日期您需要一個延遲,\n" +"您可以輸入一個負數,如在會議前15分鐘發送提醒" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range +msgid "Delay after trigger date" +msgstr "觸發日期後的延遲" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type +msgid "Delay type" +msgstr "延遲類型" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Disable Action" +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"Disabling this automated action will enable you to continue your workflow\n" +" but any data created after this could potentially be corrupted,\n" +" as you are effectively disabling a customization that may set\n" +" important and/or required fields." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range +msgid "Due Date In" +msgstr "截止日期至" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type +msgid "Due type" +msgstr "截止類型" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "Edit action" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id +msgid "Email Template" +msgstr "Email模板" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id +msgid "External ID" +msgstr "外部 ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids +msgid "Fields that trigger the onchange." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id +msgid "Groups" +msgstr "群組" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour +msgid "Hours" +msgstr "小時" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__id +msgid "ID" +msgstr "ID" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id +msgid "ID of the action if defined in a XML file" +msgstr "此動作的 ID,如果在 XML 檔案中有定義" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain +msgid "" +"If present, this condition must be satisfied before executing the action " +"rule." +msgstr "在執行規則前,此條件必須被滿足" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain +msgid "" +"If present, this condition must be satisfied before the update of the " +"record." +msgstr "在更新記錄前此條件必須被滿足" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run +msgid "Last Run" +msgstr "最後運行" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg +msgid "Least Delay Msg" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id +msgid "Link Field" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes +msgid "Minutes" +msgstr "分鐘" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id +msgid "Model" +msgstr "模型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name +msgid "Model Name" +msgstr "模型名稱" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "記錄創建/更新的模型。設定這個字段僅指明模型與基本模型的不同。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__model_id +msgid "Model on which the server action runs." +msgstr "伺服器動作運行的模型." + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month +msgid "Months" +msgstr "月" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note +msgid "Note" +msgstr "備註" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"Note that this action can be trigged up to %d minutes after its schedule." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids +msgid "On Change Fields Trigger" +msgstr "變化字段的觸發器" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create +msgid "On Creation" +msgstr "創建時" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write +msgid "On Creation & Update" +msgstr "創建以及更新時" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink +msgid "On Deletion" +msgstr "刪除時" + +#. module: base_automation +#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write +msgid "On Update" +msgstr "更新時" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "可選的幫助文本,目標視圖的說明,比如用途和目的。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id +msgid "" +"Provide the field used to link the newly created record on the record used " +"by the server action." +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__code +msgid "Python Code" +msgstr "Python 代碼" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id +msgid "Responsible" +msgstr "負責人" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence +msgid "Sequence" +msgstr "序號" + +#. module: base_automation +#: model:ir.model,name:base_automation.model_ir_actions_server +msgid "Server Action" +msgstr "伺服器動作" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id +msgid "Server Actions" +msgstr "伺服器動作" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "設定一個值使得這個動作在給定模型的選單中可用。" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "Setup a new automated automation" +msgstr "建立一個新的自動化系統" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary +msgid "Summary" +msgstr "摘要" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id +msgid "Target Model" +msgstr "目標模型" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name +msgid "Target Model Name" +msgstr "目標模型名稱" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_field_name +msgid "Technical name of the user on the record" +msgstr "記錄上使用者的技術名稱" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "" +"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the " +"\"%(state_value)s\" action type" +msgstr "這個 \"%(trigger_value)s\" %(trigger_label)s 只能與 \"%(state_value)s\" 動作類型" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids +msgid "" +"The action will be triggered if and only if one of these fields is " +"updated.If empty, all fields are watched." +msgstr "僅當並且僅當其中一個欄位更新時,將觸發該操作。如果為空,則監視所有欄位。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"The error occurred during the execution of the automated action\n" +" \"" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger +msgid "Trigger" +msgstr "觸發器" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id +msgid "Trigger Date" +msgstr "觸發日期" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids +#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form +msgid "Trigger Fields" +msgstr "" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__state +msgid "" +"Type of server action. The following values are available:\n" +"- 'Execute Python Code': a block of python code that will be executed\n" +"- 'Create': create a new record with new values\n" +"- 'Update a Record': update the values of a record\n" +"- 'Execute several actions': define an action that triggers several other server actions\n" +"- 'Send Email': automatically send an email (Discuss)\n" +"- 'Add Followers': add followers to a record (Discuss)\n" +"- 'Create Next Activity': create an activity (Discuss)" +msgstr "" +"伺服器操作的類型。以下值可用:\n" +"- \"執行 Python 代碼\":將執行的 Python 代碼塊\n" +"- \"創建\":使用新值創建新記錄\n" +"- \"更新記錄\":更新記錄的值\n" +"- \"執行多個操作\":定義觸發其他幾個伺服器操作的操作\n" +"- \"發送電子郵件\":自動發送電子郵件(討論)\n" +"- \"添加關注者\":將關注者添加到記錄(討論)\n" +"- \"創建下一個活動\":創建活動(討論)" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__usage +#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage +msgid "Usage" +msgstr "用途" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type +msgid "" +"Use 'Specific User' to always assign the same user on the next activity. Use" +" 'Generic User From Record' to specify the field name of the user to choose " +"on the record." +msgstr "使用「特定使用者」總是在下一個活動中分配相同的使用者。使用「記錄中的通用使用者」指定在記錄上選擇的使用者的字段名。 " + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id +msgid "Use Calendar" +msgstr "使用日曆" + +#. module: base_automation +#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act +msgid "" +"Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user may\n" +" be automatically set to a specific Sales Team, or an\n" +" opportunity which still has status pending after 14 days might\n" +" trigger an automatic reminder email." +msgstr "" +"使用自動操作來自動觸發操作\n" +" 不同的螢幕。例如:由特定使用者創建的線索可以\n" +" 被自動設定為一個特定的銷售團隊,或者\n" +" 在14天之後仍處於等待狀態的機會可以\n" +" 觸發一個自動提醒的信件。" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name +msgid "User field name" +msgstr "使用者字段名字" + +#. module: base_automation +#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines +msgid "Value Mapping" +msgstr "映射的值" + +#. module: base_automation +#: code:addons/base_automation/models/base_automation.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id +msgid "" +"When calculating a day-based timed condition, it is possible to use a " +"calendar to compute the date based on working days." +msgstr "當需要根據時間條件做計算時,可能使用一個根據工作日的日曆去計算是比較合適的." + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__sequence +msgid "" +"When dealing with multiple actions, the execution order is based on the " +"sequence. Low number means high priority." +msgstr "在處理多個操作時,執行順序是根據序列。小的數字具有更高的優先級。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id +msgid "" +"When should the condition be triggered.\n" +" If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" +"當條件被觸發。\n" +"如果存在,將由調度器檢查。如果為空,將檢查創建並更新。" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__active +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "如果不選中,此規則被隱藏且不被執行" + +#. module: base_automation +#: model:ir.model.fields,help:base_automation.field_base_automation__code +msgid "" +"Write Python code that the action will execute. Some variables are available" +" for use; help about python expression is given in the help tab." +msgstr "編寫動作將執行的Python代碼。一些變量可供使用;有關python表達式的幫助在幫助選項卡中給出。" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "" +"You can ask an administrator to disable or correct this automated action." +msgstr "" + +#. module: base_automation +#. openerp-web +#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0 +#, python-format +msgid "You can disable this automated action or edit it to solve the issue." +msgstr "" diff --git a/addons/base_automation/models/__init__.py b/addons/base_automation/models/__init__.py new file mode 100644 index 00000000..dd3d1a0a --- /dev/null +++ b/addons/base_automation/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import base_automation +from . import ir_actions diff --git a/addons/base_automation/models/base_automation.py b/addons/base_automation/models/base_automation.py new file mode 100644 index 00000000..9c596578 --- /dev/null +++ b/addons/base_automation/models/base_automation.py @@ -0,0 +1,533 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import datetime +import logging +import traceback +from collections import defaultdict + +from dateutil.relativedelta import relativedelta + +from odoo import _, api, fields, models, SUPERUSER_ID +from odoo.tools import DEFAULT_SERVER_DATETIME_FORMAT +from odoo.tools import safe_eval + +_logger = logging.getLogger(__name__) + +DATE_RANGE_FUNCTION = { + 'minutes': lambda interval: relativedelta(minutes=interval), + 'hour': lambda interval: relativedelta(hours=interval), + 'day': lambda interval: relativedelta(days=interval), + 'month': lambda interval: relativedelta(months=interval), + False: lambda interval: relativedelta(0), +} + +DATE_RANGE_FACTOR = { + 'minutes': 1, + 'hour': 60, + 'day': 24 * 60, + 'month': 30 * 24 * 60, + False: 0, +} + + +class BaseAutomation(models.Model): + _name = 'base.automation' + _description = 'Automated Action' + _order = 'sequence' + + action_server_id = fields.Many2one( + 'ir.actions.server', 'Server Actions', + domain="[('model_id', '=', model_id)]", + delegate=True, required=True, ondelete='restrict') + active = fields.Boolean(default=True, help="When unchecked, the rule is hidden and will not be executed.") + trigger = fields.Selection([ + ('on_create', 'On Creation'), + ('on_write', 'On Update'), + ('on_create_or_write', 'On Creation & Update'), + ('on_unlink', 'On Deletion'), + ('on_change', 'Based on Form Modification'), + ('on_time', 'Based on Timed Condition') + ], string='Trigger', required=True) + trg_date_id = fields.Many2one('ir.model.fields', string='Trigger Date', + help="""When should the condition be triggered. + If present, will be checked by the scheduler. If empty, will be checked at creation and update.""", + domain="[('model_id', '=', model_id), ('ttype', 'in', ('date', 'datetime'))]") + trg_date_range = fields.Integer(string='Delay after trigger date', + help="""Delay after the trigger date. + You can put a negative number if you need a delay before the + trigger date, like sending a reminder 15 minutes before a meeting.""") + trg_date_range_type = fields.Selection([('minutes', 'Minutes'), ('hour', 'Hours'), ('day', 'Days'), ('month', 'Months')], + string='Delay type', default='hour') + trg_date_calendar_id = fields.Many2one("resource.calendar", string='Use Calendar', + help="When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days.") + filter_pre_domain = fields.Char(string='Before Update Domain', + help="If present, this condition must be satisfied before the update of the record.") + filter_domain = fields.Char(string='Apply on', help="If present, this condition must be satisfied before executing the action rule.") + last_run = fields.Datetime(readonly=True, copy=False) + on_change_field_ids = fields.Many2many( + "ir.model.fields", + relation="base_automation_onchange_fields_rel", + string="On Change Fields Trigger", + help="Fields that trigger the onchange.", + ) + trigger_field_ids = fields.Many2many('ir.model.fields', string='Trigger Fields', + help="The action will be triggered if and only if one of these fields is updated." + "If empty, all fields are watched.") + least_delay_msg = fields.Char(compute='_compute_least_delay_msg') + + # which fields have an impact on the registry and the cron + CRITICAL_FIELDS = ['model_id', 'active', 'trigger', 'on_change_field_ids'] + RANGE_FIELDS = ['trg_date_range', 'trg_date_range_type'] + + @api.onchange('model_id') + def onchange_model_id(self): + self.model_name = self.model_id.model + + @api.onchange('trigger') + def onchange_trigger(self): + if self.trigger in ['on_create', 'on_create_or_write', 'on_unlink']: + self.filter_pre_domain = self.trg_date_id = self.trg_date_range = self.trg_date_range_type = False + elif self.trigger in ['on_write', 'on_create_or_write']: + self.trg_date_id = self.trg_date_range = self.trg_date_range_type = False + elif self.trigger == 'on_time': + self.filter_pre_domain = False + self.trg_date_range_type = 'hour' + + @api.onchange('trigger', 'state') + def _onchange_state(self): + if self.trigger == 'on_change' and self.state != 'code': + ff = self.fields_get(['trigger', 'state']) + return {'warning': { + 'title': _("Warning"), + 'message': _("The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type") % { + 'trigger_value': dict(ff['trigger']['selection'])['on_change'], + 'trigger_label': ff['trigger']['string'], + 'state_value': dict(ff['state']['selection'])['code'], + } + }} + + MAIL_STATES = ('email', 'followers', 'next_activity') + if self.trigger == 'on_unlink' and self.state in MAIL_STATES: + return {'warning': { + 'title': _("Warning"), + 'message': _( + "You cannot send an email, add followers or create an activity " + "for a deleted record. It simply does not work." + ), + }} + + @api.model_create_multi + def create(self, vals_list): + for vals in vals_list: + vals['usage'] = 'base_automation' + base_automations = super(BaseAutomation, self).create(vals_list) + self._update_cron() + self._update_registry() + return base_automations + + def write(self, vals): + res = super(BaseAutomation, self).write(vals) + if set(vals).intersection(self.CRITICAL_FIELDS): + self._update_cron() + self._update_registry() + elif set(vals).intersection(self.RANGE_FIELDS): + self._update_cron() + return res + + def unlink(self): + res = super(BaseAutomation, self).unlink() + self._update_cron() + self._update_registry() + return res + + def _update_cron(self): + """ Activate the cron job depending on whether there exists action rules + based on time conditions. Also update its frequency according to + the smallest action delay, or restore the default 4 hours if there + is no time based action. + """ + cron = self.env.ref('base_automation.ir_cron_data_base_automation_check', raise_if_not_found=False) + if cron: + actions = self.with_context(active_test=True).search([('trigger', '=', 'on_time')]) + cron.try_write({ + 'active': bool(actions), + 'interval_type': 'minutes', + 'interval_number': self._get_cron_interval(actions), + }) + + def _update_registry(self): + """ Update the registry after a modification on action rules. """ + if self.env.registry.ready and not self.env.context.get('import_file'): + # re-install the model patches, and notify other workers + self._unregister_hook() + self._register_hook() + self.env.registry.registry_invalidated = True + + def _get_actions(self, records, triggers): + """ Return the actions of the given triggers for records' model. The + returned actions' context contain an object to manage processing. + """ + if '__action_done' not in self._context: + self = self.with_context(__action_done={}) + domain = [('model_name', '=', records._name), ('trigger', 'in', triggers)] + actions = self.with_context(active_test=True).sudo().search(domain) + return actions.with_env(self.env) + + def _get_eval_context(self): + """ Prepare the context used when evaluating python code + :returns: dict -- evaluation context given to safe_eval + """ + return { + 'datetime': safe_eval.datetime, + 'dateutil': safe_eval.dateutil, + 'time': safe_eval.time, + 'uid': self.env.uid, + 'user': self.env.user, + } + + def _get_cron_interval(self, actions=None): + """ Return the expected time interval used by the cron, in minutes. """ + def get_delay(rec): + return rec.trg_date_range * DATE_RANGE_FACTOR[rec.trg_date_range_type] + + if actions is None: + actions = self.with_context(active_test=True).search([('trigger', '=', 'on_time')]) + + # Minimum 1 minute, maximum 4 hours, 10% tolerance + delay = min(actions.mapped(get_delay), default=0) + return min(max(1, delay // 10), 4 * 60) if delay else 4 * 60 + + def _compute_least_delay_msg(self): + msg = _("Note that this action can be trigged up to %d minutes after its schedule.") + self.least_delay_msg = msg % self._get_cron_interval() + + def _filter_pre(self, records): + """ Filter the records that satisfy the precondition of action ``self``. """ + self_sudo = self.sudo() + if self_sudo.filter_pre_domain and records: + domain = safe_eval.safe_eval(self_sudo.filter_pre_domain, self._get_eval_context()) + return records.sudo().filtered_domain(domain).with_env(records.env) + else: + return records + + def _filter_post(self, records): + return self._filter_post_export_domain(records)[0] + + def _filter_post_export_domain(self, records): + """ Filter the records that satisfy the postcondition of action ``self``. """ + self_sudo = self.sudo() + if self_sudo.filter_domain and records: + domain = [('id', 'in', records.ids)] + safe_eval.safe_eval(self_sudo.filter_domain, self._get_eval_context()) + return records.sudo().search(domain).with_env(records.env), domain + else: + return records, None + + @api.model + def _add_postmortem_action(self, e): + if self.user_has_groups('base.group_user'): + e.context = {} + e.context['exception_class'] = 'base_automation' + e.context['base_automation'] = { + 'id': self.id, + 'name': self.name, + } + + def _process(self, records, domain_post=None): + """ Process action ``self`` on the ``records`` that have not been done yet. """ + # filter out the records on which self has already been done + action_done = self._context['__action_done'] + records_done = action_done.get(self, records.browse()) + records -= records_done + if not records: + return + + # mark the remaining records as done (to avoid recursive processing) + action_done = dict(action_done) + action_done[self] = records_done + records + self = self.with_context(__action_done=action_done) + records = records.with_context(__action_done=action_done) + + # modify records + values = {} + if 'date_action_last' in records._fields: + values['date_action_last'] = fields.Datetime.now() + if values: + records.write(values) + + # execute server actions + if self.action_server_id: + for record in records: + # we process the action if any watched field has been modified + if self._check_trigger_fields(record): + ctx = { + 'active_model': record._name, + 'active_ids': record.ids, + 'active_id': record.id, + 'domain_post': domain_post, + } + try: + self.action_server_id.sudo().with_context(**ctx).run() + except Exception as e: + self._add_postmortem_action(e) + raise e + + def _check_trigger_fields(self, record): + """ Return whether any of the trigger fields has been modified on ``record``. """ + self_sudo = self.sudo() + if not self_sudo.trigger_field_ids: + # all fields are implicit triggers + return True + + if not self._context.get('old_values'): + # this is a create: all fields are considered modified + return True + + # Note: old_vals are in the format of read() + old_vals = self._context['old_values'].get(record.id, {}) + + def differ(name): + field = record._fields[name] + return ( + name in old_vals and + field.convert_to_cache(record[name], record, validate=False) != + field.convert_to_cache(old_vals[name], record, validate=False) + ) + return any(differ(field.name) for field in self_sudo.trigger_field_ids) + + def _register_hook(self): + """ Patch models that should trigger action rules based on creation, + modification, deletion of records and form onchanges. + """ + # + # Note: the patched methods must be defined inside another function, + # otherwise their closure may be wrong. For instance, the function + # create refers to the outer variable 'create', which you expect to be + # bound to create itself. But that expectation is wrong if create is + # defined inside a loop; in that case, the variable 'create' is bound to + # the last function defined by the loop. + # + + def make_create(): + """ Instanciate a create method that processes action rules. """ + @api.model_create_multi + def create(self, vals_list, **kw): + # retrieve the action rules to possibly execute + actions = self.env['base.automation']._get_actions(self, ['on_create', 'on_create_or_write']) + if not actions: + return create.origin(self, vals_list, **kw) + # call original method + records = create.origin(self.with_env(actions.env), vals_list, **kw) + # check postconditions, and execute actions on the records that satisfy them + for action in actions.with_context(old_values=None): + action._process(action._filter_post(records)) + return records.with_env(self.env) + + return create + + def make_write(): + """ Instanciate a write method that processes action rules. """ + def write(self, vals, **kw): + # retrieve the action rules to possibly execute + actions = self.env['base.automation']._get_actions(self, ['on_write', 'on_create_or_write']) + if not (actions and self): + return write.origin(self, vals, **kw) + records = self.with_env(actions.env).filtered('id') + # check preconditions on records + pre = {action: action._filter_pre(records) for action in actions} + # read old values before the update + old_values = { + old_vals.pop('id'): old_vals + for old_vals in (records.read(list(vals)) if vals else []) + } + # call original method + write.origin(records, vals, **kw) + # check postconditions, and execute actions on the records that satisfy them + for action in actions.with_context(old_values=old_values): + records, domain_post = action._filter_post_export_domain(pre[action]) + action._process(records, domain_post=domain_post) + return True + + return write + + def make_compute_field_value(): + """ Instanciate a compute_field_value method that processes action rules. """ + # + # Note: This is to catch updates made by field recomputations. + # + def _compute_field_value(self, field): + # determine fields that may trigger an action + stored_fields = [f for f in self.pool.field_computed[field] if f.store] + if not any(stored_fields): + return _compute_field_value.origin(self, field) + # retrieve the action rules to possibly execute + actions = self.env['base.automation']._get_actions(self, ['on_write', 'on_create_or_write']) + records = self.filtered('id').with_env(actions.env) + if not (actions and records): + _compute_field_value.origin(self, field) + return True + # check preconditions on records + pre = {action: action._filter_pre(records) for action in actions} + # read old values before the update + old_values = { + old_vals.pop('id'): old_vals + for old_vals in (records.read([f.name for f in stored_fields])) + } + # call original method + _compute_field_value.origin(self, field) + # check postconditions, and execute actions on the records that satisfy them + for action in actions.with_context(old_values=old_values): + records, domain_post = action._filter_post_export_domain(pre[action]) + action._process(records, domain_post=domain_post) + return True + + return _compute_field_value + + def make_unlink(): + """ Instanciate an unlink method that processes action rules. """ + def unlink(self, **kwargs): + # retrieve the action rules to possibly execute + actions = self.env['base.automation']._get_actions(self, ['on_unlink']) + records = self.with_env(actions.env) + # check conditions, and execute actions on the records that satisfy them + for action in actions: + action._process(action._filter_post(records)) + # call original method + return unlink.origin(self, **kwargs) + + return unlink + + def make_onchange(action_rule_id): + """ Instanciate an onchange method for the given action rule. """ + def base_automation_onchange(self): + action_rule = self.env['base.automation'].browse(action_rule_id) + result = {} + server_action = action_rule.sudo().action_server_id.with_context( + active_model=self._name, + active_id=self._origin.id, + active_ids=self._origin.ids, + onchange_self=self, + ) + try: + res = server_action.run() + except Exception as e: + action_rule._add_postmortem_action(e) + raise e + + if res: + if 'value' in res: + res['value'].pop('id', None) + self.update({key: val for key, val in res['value'].items() if key in self._fields}) + if 'domain' in res: + result.setdefault('domain', {}).update(res['domain']) + if 'warning' in res: + result['warning'] = res['warning'] + return result + + return base_automation_onchange + + patched_models = defaultdict(set) + def patch(model, name, method): + """ Patch method `name` on `model`, unless it has been patched already. """ + if model not in patched_models[name]: + patched_models[name].add(model) + model._patch_method(name, method) + + # retrieve all actions, and patch their corresponding model + for action_rule in self.with_context({}).search([]): + Model = self.env.get(action_rule.model_name) + + # Do not crash if the model of the base_action_rule was uninstalled + if Model is None: + _logger.warning("Action rule with ID %d depends on model %s" % + (action_rule.id, + action_rule.model_name)) + continue + + if action_rule.trigger == 'on_create': + patch(Model, 'create', make_create()) + + elif action_rule.trigger == 'on_create_or_write': + patch(Model, 'create', make_create()) + patch(Model, 'write', make_write()) + patch(Model, '_compute_field_value', make_compute_field_value()) + + elif action_rule.trigger == 'on_write': + patch(Model, 'write', make_write()) + patch(Model, '_compute_field_value', make_compute_field_value()) + + elif action_rule.trigger == 'on_unlink': + patch(Model, 'unlink', make_unlink()) + + elif action_rule.trigger == 'on_change': + # register an onchange method for the action_rule + method = make_onchange(action_rule.id) + for field in action_rule.on_change_field_ids: + Model._onchange_methods[field.name].append(method) + + def _unregister_hook(self): + """ Remove the patches installed by _register_hook() """ + NAMES = ['create', 'write', '_compute_field_value', 'unlink', '_onchange_methods'] + for Model in self.env.registry.values(): + for name in NAMES: + try: + delattr(Model, name) + except AttributeError: + pass + + @api.model + def _check_delay(self, action, record, record_dt): + if action.trg_date_calendar_id and action.trg_date_range_type == 'day': + return action.trg_date_calendar_id.plan_days( + action.trg_date_range, + fields.Datetime.from_string(record_dt), + compute_leaves=True, + ) + else: + delay = DATE_RANGE_FUNCTION[action.trg_date_range_type](action.trg_date_range) + return fields.Datetime.from_string(record_dt) + delay + + @api.model + def _check(self, automatic=False, use_new_cursor=False): + """ This Function is called by scheduler. """ + if '__action_done' not in self._context: + self = self.with_context(__action_done={}) + + # retrieve all the action rules to run based on a timed condition + eval_context = self._get_eval_context() + for action in self.with_context(active_test=True).search([('trigger', '=', 'on_time')]): + _logger.info("Starting time-based automated action `%s`.", action.name) + last_run = fields.Datetime.from_string(action.last_run) or datetime.datetime.utcfromtimestamp(0) + + # retrieve all the records that satisfy the action's condition + domain = [] + context = dict(self._context) + if action.filter_domain: + domain = safe_eval.safe_eval(action.filter_domain, eval_context) + records = self.env[action.model_name].with_context(context).search(domain) + + # determine when action should occur for the records + if action.trg_date_id.name == 'date_action_last' and 'create_date' in records._fields: + get_record_dt = lambda record: record[action.trg_date_id.name] or record.create_date + else: + get_record_dt = lambda record: record[action.trg_date_id.name] + + # process action on the records that should be executed + now = datetime.datetime.now() + for record in records: + record_dt = get_record_dt(record) + if not record_dt: + continue + action_dt = self._check_delay(action, record, record_dt) + if last_run <= action_dt < now: + try: + action._process(record) + except Exception: + _logger.error(traceback.format_exc()) + + action.write({'last_run': now.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}) + _logger.info("Time-based automated action `%s` done.", action.name) + + if automatic: + # auto-commit for batch processing + self._cr.commit() diff --git a/addons/base_automation/models/ir_actions.py b/addons/base_automation/models/ir_actions.py new file mode 100644 index 00000000..0cf9263c --- /dev/null +++ b/addons/base_automation/models/ir_actions.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ServerAction(models.Model): + _inherit = "ir.actions.server" + + usage = fields.Selection(selection_add=[ + ('base_automation', 'Automated Action') + ], ondelete={'base_automation': 'cascade'}) diff --git a/addons/base_automation/security/ir.model.access.csv b/addons/base_automation/security/ir.model.access.csv new file mode 100644 index 00000000..77253ff3 --- /dev/null +++ b/addons/base_automation/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+access_base_automation_config,base.automation config,model_base_automation,base.group_system,1,1,1,1
diff --git a/addons/base_automation/static/src/js/base_automation_error_dialog.js b/addons/base_automation/static/src/js/base_automation_error_dialog.js new file mode 100644 index 00000000..3fa4cf0c --- /dev/null +++ b/addons/base_automation/static/src/js/base_automation_error_dialog.js @@ -0,0 +1,78 @@ +odoo.define('base_automation.BaseAutomatioErrorDialog', function (require) { + "use strict"; + + const CrashManager = require('web.CrashManager'); + const ErrorDialog = CrashManager.ErrorDialog; + const ErrorDialogRegistry = require('web.ErrorDialogRegistry'); + const session = require('web.session'); + + const BaseAutomationErrorDialog = ErrorDialog.extend({ + xmlDependencies: (ErrorDialog.prototype.xmlDependencies || []).concat( + ['/base_automation/static/src/xml/base_automation_error_dialog.xml'] + ), + template: 'CrashManager.BaseAutomationError', + events: { + 'click .o_disable_action_button': '_onDisableAction', + 'click .o_edit_action_button': '_onEditAction', + }, + /** + * Assign the `base_automation` object based on the error data, + * which is then used by the `CrashManager.BaseAutomationError` template + * and the events defined above. + * @override + * @param {Object} error + * @param {string} error.data.context.base_automation.id the ID of the failing automated action + * @param {string} error.data.context.base_automation.name the name of the failing automated action + */ + init: function (parent, options, error) { + this._super.apply(this, arguments); + this.base_automation = error.data.context.base_automation; + this.is_admin = session.is_admin; + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * This method is called when the user clicks on the 'Disable action' button + * displayed when a crash occurs in the evaluation of an automated action. + * Then, we write `active` to `False` on the automated action to disable it. + * + * @private + * @param {MouseEvent} ev + */ + _onDisableAction: function (ev) { + ev.preventDefault(); + this._rpc({ + model: 'base.automation', + method: 'write', + args: [[this.base_automation.id], { + active: false, + }], + }).then(this.destroy.bind(this)); + }, + /** + * This method is called when the user clicks on the 'Edit action' button + * displayed when a crash occurs in the evaluation of an automated action. + * Then, we redirect the user to the automated action form. + * + * @private + * @param {MouseEvent} ev + */ + _onEditAction: function (ev) { + ev.preventDefault(); + this.do_action({ + name: 'Automated Actions', + res_model: 'base.automation', + res_id: this.base_automation.id, + views: [[false, 'form']], + type: 'ir.actions.act_window', + view_mode: 'form', + }); + }, + }); + + ErrorDialogRegistry.add('base_automation', BaseAutomationErrorDialog); + +}); diff --git a/addons/base_automation/static/src/xml/base_automation_error_dialog.xml b/addons/base_automation/static/src/xml/base_automation_error_dialog.xml new file mode 100644 index 00000000..e45c5911 --- /dev/null +++ b/addons/base_automation/static/src/xml/base_automation_error_dialog.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<templates> + <t t-name="CrashManager.BaseAutomationError" t-extend="CrashManager.error"> + <t t-jquery=".alert.alert-warning" t-operation="append"> + <t t-if="widget.base_automation.id"> + <p> + The error occurred during the execution of the automated action + "<t t-esc="widget.base_automation.name"/>" + (ID: <t t-esc="widget.base_automation.id"/>). + <br/> + </p> + <p t-if="!widget.is_admin"> + You can ask an administrator to disable or correct this automated action. + </p> + <p t-if="widget.is_admin"> + You can disable this automated action or edit it to solve the issue.<br/> + Disabling this automated action will enable you to continue your workflow + but any data created after this could potentially be corrupted, + as you are effectively disabling a customization that may set + important and/or required fields. + </p> + </t> + </t> + <t t-jquery=".alert.alert-warning button" t-operation="after"> + <t t-if="widget.base_automation.id && widget.is_admin"> + <button class="btn btn-secondary mt4 o_disable_action_button"> + <i class="fa fa-ban mr8"/>Disable Action + </button> + <button class="btn btn-secondary mt4 o_edit_action_button"> + <i class="fa fa-edit mr8"/>Edit action + </button> + </t> + </t> + </t> +</templates> diff --git a/addons/base_automation/static/tests/base_automation_error_dialog.js b/addons/base_automation/static/tests/base_automation_error_dialog.js new file mode 100644 index 00000000..af2e9ff6 --- /dev/null +++ b/addons/base_automation/static/tests/base_automation_error_dialog.js @@ -0,0 +1,72 @@ +odoo.define('base_automation.BaseAutomatioErrorDialogTests', function (require) { +'use strict'; + + const CrashManager = require('web.CrashManager').CrashManager; + const session = require('web.session'); + + QUnit.module('base_automation', {}, function () { + + QUnit.module('Error Dialog'); + + QUnit.test('Error due to an automated action', async function (assert) { + assert.expect(4); + + let baseAutomationName = 'Test base automation error dialog'; + let error = { + type: 'Odoo Client Error', + message: 'Message', + data: { + debug: 'Traceback', + context: { + exception_class: 'base_automation', + base_automation: { + id: 1, + name: baseAutomationName, + }, + }, + }, + }; + // Force the user session to be admin, to display the disable and edit action buttons, + // then reset back to the origin value after the test. + let isAdmin = session.is_admin; + session.is_admin = true; + + let crashManager = new CrashManager(); + let dialog = crashManager.show_error(error); + + await dialog._opened; + + assert.containsOnce(document.body, '.modal .o_clipboard_button'); + assert.containsOnce(document.body, '.modal .o_disable_action_button'); + assert.containsOnce(document.body, '.modal .o_edit_action_button'); + assert.ok(dialog.$el.text().indexOf(baseAutomationName) !== -1); + + session.is_admin = isAdmin; + crashManager.destroy(); + }); + + QUnit.test('Error not due to an automated action', async function (assert) { + assert.expect(3); + + let error = { + type: 'Odoo Client Error', + message: 'Message', + data: { + debug: 'Traceback', + }, + }; + let crashManager = new CrashManager(); + let dialog = crashManager.show_error(error); + + await dialog._opened; + + assert.containsOnce(document.body, '.modal .o_clipboard_button'); + assert.containsNone(document.body, '.modal .o_disable_action_button'); + assert.containsNone(document.body, '.modal .o_edit_action_button'); + + crashManager.destroy(); + }); + + }); + +}); diff --git a/addons/base_automation/tests/__init__.py b/addons/base_automation/tests/__init__.py new file mode 100644 index 00000000..92a8a495 --- /dev/null +++ b/addons/base_automation/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import test_automation diff --git a/addons/base_automation/tests/test_automation.py b/addons/base_automation/tests/test_automation.py new file mode 100644 index 00000000..1acdf617 --- /dev/null +++ b/addons/base_automation/tests/test_automation.py @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo.tests import TransactionCase +from odoo.exceptions import UserError + +import odoo.tests + +@odoo.tests.tagged('post_install', '-at_install') +class TestAutomation(TransactionCase): + + def test_01_on_create(self): + """ Simple on_create with admin user """ + self.env["base.automation"].create({ + "name": "Force Archived Contacts", + "trigger": "on_create_or_write", + "model_id": self.env.ref("base.model_res_partner").id, + "type": "ir.actions.server", + "trigger_field_ids": [(6, 0, [self.env.ref("base.field_res_partner__name").id])], + "fields_lines": [(0, 0, { + "col1": self.env.ref("base.field_res_partner__active").id, + "evaluation_type": "equation", + "value": "False", + })], + }) + + # verify the partner can be created and the action still runs + bilbo = self.env["res.partner"].create({"name": "Bilbo Baggins"}) + self.assertFalse(bilbo.active) + + # verify the partner can be updated and the action still runs + bilbo.active = True + bilbo.name = "Bilbo" + self.assertFalse(bilbo.active) + + + def test_02_on_create_restricted(self): + """ on_create action with low portal user """ + action = self.env["base.automation"].create({ + "name": "Force Archived Filters", + "trigger": "on_create_or_write", + "model_id": self.env.ref("base.model_ir_filters").id, + "type": "ir.actions.server", + "trigger_field_ids": [(6, 0, [self.env.ref("base.field_ir_filters__name").id])], + "fields_lines": [(0, 0, { + "col1": self.env.ref("base.field_ir_filters__active").id, + "evaluation_type": "equation", + "value": "False", + })], + }) + # action cached was cached with admin, force CacheMiss + action.env.clear() + + self_portal = self.env["ir.filters"].with_user(self.env.ref("base.user_demo").id) + # verify the portal user can create ir.filters but can not read base.automation + self.assertTrue(self_portal.env["ir.filters"].check_access_rights("create", raise_exception=False)) + self.assertFalse(self_portal.env["base.automation"].check_access_rights("read", raise_exception=False)) + + # verify the filter can be created and the action still runs + filters = self_portal.create({ + "name": "Where is Bilbo?", + "domain": "[('name', 'ilike', 'bilbo')]", + "model_id": "res.partner", + }) + self.assertFalse(filters.active) + + # verify the filter can be updated and the action still runs + filters.active = True + filters.name = "Where is Bilbo Baggins?" + self.assertFalse(filters.active) + + + def test_03_on_change_restricted(self): + """ on_create action with low portal user """ + action = self.env["base.automation"].create({ + "name": "Force Archived Filters", + "trigger": "on_change", + "model_id": self.env.ref("base.model_ir_filters").id, + "type": "ir.actions.server", + "on_change_field_ids": [(6, 0, [self.env.ref("base.field_ir_filters__name").id])], + "state": "code", + "code": """action = {'value': {'active': False}}""", + }) + # action cached was cached with admin, force CacheMiss + action.env.clear() + + self_portal = self.env["ir.filters"].with_user(self.env.ref("base.user_demo").id) + + # simulate a onchange call on name + onchange = self_portal.onchange({}, [], {"name": "1", "active": ""}) + self.assertEqual(onchange["value"]["active"], False) diff --git a/addons/base_automation/views/base_automation_view.xml b/addons/base_automation/views/base_automation_view.xml new file mode 100644 index 00000000..5bce0608 --- /dev/null +++ b/addons/base_automation/views/base_automation_view.xml @@ -0,0 +1,119 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <!-- Automation Form View --> + <record id="view_base_automation_form" model="ir.ui.view"> + <field name="name">Automations</field> + <field name="model">base.automation</field> + <field name="mode">primary</field> + <field name="inherit_id" ref="base.view_server_action_form"/> + <field name="arch" type="xml"> + <xpath expr="//button[@name='create_action']" position="replace"> + </xpath> + <xpath expr="//button[@name='unlink_action']" position="replace"> + </xpath> + <xpath expr="//button[@name='run']" position="replace"> + </xpath> + <xpath expr="//field[@name='partner_ids']" position='attributes'> + <attribute name="options">{'no_create': True}</attribute> + </xpath> + <xpath expr="//field[@name='channel_ids']" position='attributes'> + <attribute name="options">{'no_create': True}</attribute> + </xpath> + <xpath expr="//field[@name='template_id']" position='attributes'> + <attribute name="context">{'default_model_id': model_id}</attribute> + </xpath> + <xpath expr="//page[@name='security']" position='attributes'> + <attribute name='invisible'>1</attribute> + </xpath> + <xpath expr="//group[@name='action_content']" position="inside"> + <field name="active" widget="boolean_toggle"/> + <field name="trigger"/> + <field name="trigger_field_ids" domain="[('model_id', '=', model_id)]" attrs="{'invisible': [('trigger', 'not in', ['on_write', 'on_create_or_write'])]}" widget="many2many_tags"/> + <field name="on_change_field_ids" string="Trigger Fields" domain="[('model_id', '=', model_id)]" + attrs="{'invisible': [('trigger', '!=', 'on_change')], 'required': [('trigger', '=', 'on_change')]}" + widget='many2many_tags' options="{'no_create': True}"/> + + <field name="filter_pre_domain" widget="domain" options="{'model': 'model_name', 'in_dialog': True}" attrs="{'invisible': [('trigger', 'not in', ['on_write','on_create_or_write'])]}"/> + <field name="filter_domain" widget="domain" options="{'model': 'model_name', 'in_dialog': True}"/> + <field name="trg_date_id" + attrs="{'invisible': [('trigger', '!=', 'on_time')], 'required': [('trigger', '=', 'on_time')]}"/> + <label for="trg_date_range" + attrs="{'invisible': [('trigger', '!=', 'on_time')]}"/> + <div class="o_row" attrs="{'invisible': [('trigger', '!=', 'on_time')]}"> + <field name="trg_date_range" attrs="{'required': [('trigger','=','on_time')]}"/> + <field name="trg_date_range_type" attrs="{'required': [('trigger','=','on_time')]}"/> + </div> + <field name="trg_date_calendar_id" + attrs="{'invisible': ['|', ('trg_date_id','=',False), ('trg_date_range_type', '!=', 'day')]}"/> + </xpath> + <xpath expr="//group[@name='action_wrapper']" position="after"> + <div class="alert alert-info" role="alert" attrs="{'invisible': [('trigger', '!=', 'on_time')]}"> + <field name="least_delay_msg"/> + </div> + </xpath> + </field> + </record> + + <!-- automation Tree View --> + <record id="view_base_automation_tree" model="ir.ui.view"> + <field name="name">base.automation.tree</field> + <field name="model">base.automation</field> + <field name="arch" type="xml"> + <tree string="Automation"> + <field name="sequence" widget="handle"/> + <field name="name"/> + <field name="trigger"/> + <field name="model_id"/> + </tree> + </field> + </record> + + <record id="view_base_automation_search" model="ir.ui.view"> + <field name="name">base.automation.search</field> + <field name="model">base.automation</field> + <field name="arch" type="xml"> + <search> + <field name="name"/> + <field name="model_id"/> + <separator/> + <filter string="Archived" name="inactive" domain="[('active', '=', False)]"/> + </search> + </field> + </record> + + <!-- automation Action --> + <record id="base_automation_act" model="ir.actions.act_window"> + <field name="name">Automated Actions</field> + <field name="res_model">base.automation</field> + <field name="view_mode">tree,form</field> + <field name="view_id" ref="view_base_automation_tree"/> + <field name="help" type="html"> + <p class="o_view_nocontent_smiling_face"> + Setup a new automated automation + </p><p> + Use automated actions to automatically trigger actions for + various screens. Example: a lead created by a specific user may + be automatically set to a specific Sales Team, or an + opportunity which still has status pending after 14 days might + trigger an automatic reminder email. + </p> + </field> + </record> + + <menuitem id="menu_base_automation_form" + parent="base.menu_automation" action="base_automation_act" sequence="1"/> + + <template id="assets_backend" name="base_automation assets" inherit_id="web.assets_backend"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/base_automation/static/src/js/base_automation_error_dialog.js"/> + </xpath> + </template> + + <template id="qunit_suite" name="base_automation_tests" inherit_id="web.qunit_suite_tests"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/base_automation/static/tests/base_automation_error_dialog.js"/> + </xpath> + </template> + +</odoo> |
