mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-22 04:52:02 +02:00
19.0 vanilla
This commit is contained in:
parent
d1963a3c3a
commit
2d3ee4855a
7430 changed files with 2687981 additions and 2965473 deletions
|
|
@ -1,10 +1,10 @@
|
|||
# Automated Action Rules
|
||||
# Automation Rules
|
||||
|
||||
|
||||
This module allows to implement action rules for any object.
|
||||
============================================================
|
||||
This module allows to implement automation rules for any object.
|
||||
================================================================
|
||||
|
||||
Use automated actions to automatically trigger actions for various screens.
|
||||
Use automation rules 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
|
||||
|
|
@ -19,37 +19,18 @@ pip install odoo-bringout-oca-ocb-base_automation
|
|||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- base
|
||||
- digest
|
||||
- resource
|
||||
- mail
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Automated Action Rules
|
||||
- **Version**: 1.0
|
||||
- **Category**: Sales/Sales
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
- sms
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `base_automation`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/base_automation
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -2,3 +2,4 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import controllers
|
||||
|
|
|
|||
|
|
@ -2,33 +2,35 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Automated Action Rules',
|
||||
'name': 'Automation Rules',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Sales',
|
||||
'description': """
|
||||
This module allows to implement action rules for any object.
|
||||
============================================================
|
||||
This module allows to implement automation rules for any object.
|
||||
================================================================
|
||||
|
||||
Use automated actions to automatically trigger actions for various screens.
|
||||
Use automation rules 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'],
|
||||
'depends': ['base', 'digest', 'resource', 'mail', 'sms'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'data/base_automation_data.xml',
|
||||
'data/digest_data.xml',
|
||||
'views/base_automation_views.xml',
|
||||
'views/ir_actions_server_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'base_automation/static/src/js/**/*',
|
||||
'base_automation/static/src/xml/*.xml',
|
||||
'base_automation/static/src/**/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'web.assets_unit_tests': [
|
||||
'base_automation/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
from . import main
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
from odoo.http import request, route, Controller
|
||||
from odoo.addons.base_automation.models.base_automation import get_webhook_request_payload
|
||||
|
||||
class BaseAutomationController(Controller):
|
||||
|
||||
@route(['/web/hook/<string:rule_uuid>'], type='http', auth='public', methods=['GET', 'POST'], csrf=False, save_session=False)
|
||||
def call_webhook_http(self, rule_uuid, **kwargs):
|
||||
""" Execute an automation webhook """
|
||||
rule = request.env['base.automation'].sudo().search([('webhook_uuid', '=', rule_uuid)])
|
||||
if not rule:
|
||||
return request.make_json_response({'status': 'error'}, status=404)
|
||||
|
||||
data = get_webhook_request_payload()
|
||||
try:
|
||||
rule._execute_webhook(data)
|
||||
except Exception: # noqa: BLE001
|
||||
return request.make_json_response({'status': 'error'}, status=500)
|
||||
return request.make_json_response({'status': 'ok'}, status=200)
|
||||
|
|
@ -2,14 +2,12 @@
|
|||
<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="name">Automation Rules: 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="code">model._cron_process_time_based_actions()</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>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="digest_tip_base_automation_0" model="digest.tip">
|
||||
<field name="name">Tip: Automate everything with Automation Rules</field>
|
||||
<field name="sequence">3700</field>
|
||||
<field name="group_id" ref="base.group_system"/>
|
||||
<field name="tip_description" type="html">
|
||||
<div>
|
||||
<p class="tip_title">Tip: Automate everything with Automation Rules</p>
|
||||
<p class="tip_content">Send an email when an object changes state, archive records after a month of inactivity or remind yourself to follow-up on tasks when a specific tag is added.<br/>With Automation Rules, you can automate any workflow.</p>
|
||||
<img src="https://download.odoocdn.com/digests/base_automation/static/src/img/18-automation-rules.gif" width="540" class="illustration_border"/>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,628 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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
|
||||
#. odoo-javascript
|
||||
#: 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__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
|
||||
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,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered 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__mail_post_method
|
||||
msgid "Send as"
|
||||
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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,480 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
File diff suppressed because it is too large
Load diff
1254
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/es_419.po
Normal file
1254
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/es_419.po
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,703 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Lucia Pacheco, 2022
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2024\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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__partner_ids
|
||||
msgid "Add Followers"
|
||||
msgstr "Agregar 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
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr "Regla 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 "Al modificar un formulario"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr "Según la 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 subordinadas del servidor que se ejecutarán. Tenga en cuenta "
|
||||
"que el último valor devuelto se usará como valor de retorno global."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
msgstr ""
|
||||
"Elija el método de envío del correo electrónico:\n"
|
||||
"Correo electrónico: enviar correos electrónicos directamente\n"
|
||||
"Publicar como mensaje: publicar en el documento y notificar a los seguidores\n"
|
||||
"Publicar como nota: registrar una nota en el documento"
|
||||
|
||||
#. 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 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 de atraso"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 con su flujo de trabajo \n"
|
||||
"pero cualquiera de los datos creados después de esto podrían estar dañados \n"
|
||||
"ya que está deshabilitando la personalización configurada en los \n"
|
||||
"campos importantes o requeridos."
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Los tipos de acción de correo electrónico, actividades o seguidores no se "
|
||||
"pueden usar al eliminar registros."
|
||||
|
||||
#. 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 \"onchange\"."
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
msgstr ""
|
||||
"Las acciones basadas en la modificación de formularios solo se pueden usar "
|
||||
"con un tipo de acción de código."
|
||||
|
||||
#. 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, se debe cumplir esta condición 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á marcada esta casilla, se debe cumplir esta condición 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 tiempo de espera 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. Configure este campo "
|
||||
"solo si desea 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered up to %d minutes after its schedule."
|
||||
msgstr ""
|
||||
"Tome en cuenta que esta acción se puede activar hasta %d minutos después de "
|
||||
"lo programado."
|
||||
|
||||
#. 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 de"
|
||||
" destino, su uso y 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 ""
|
||||
"Proporcione 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__mail_post_method
|
||||
msgid "Send as"
|
||||
msgstr "Enviar como"
|
||||
|
||||
#. 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 en la barra 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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
msgstr "Suscribir a los destinatarios"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"Solo se activará la acción si se actualiza uno de estos campos. Si está "
|
||||
"vacío, se verán todos los campos."
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 de 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
msgstr ""
|
||||
"Tipo de acción del servidor. Estos son los valores disponibles:\n"
|
||||
"- 'Ejecutar código Python': un bloque de código Python que se ejecutará\n"
|
||||
"- 'Crear un registro nuevo': crear un registro nuevo con valores nuevos\n"
|
||||
"- 'Actualizar registro': actualizar los valores de un registro\n"
|
||||
"- 'Ejecutar varias acciones': definir una acción que active muchas otras acciones\n"
|
||||
"- 'Enviar correo electrónico': publicar un mensaje, una nota o enviar un correo (Conversaciones)\n"
|
||||
"- 'Agregar seguidores': agregar seguidores a un registro (Conversaciones)\n"
|
||||
"- 'Crear siguiente actividad': crear una actividad (Conversaciones)\n"
|
||||
"- 'Enviar mensaje SMS': enviar mensajes SMS y registrarlos en documentos (SMS)"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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 ""
|
||||
"Utilice \"Usuario específico\" para asignar siempre al mismo usuario en la "
|
||||
"siguiente actividad. Utilice \"Usuario genérico del registro\" para "
|
||||
"especificar el nombre del campo del usuario a 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 lead creado por un usuario específico \n"
|
||||
" puede configurarse de forma automática 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: 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 ""
|
||||
"Al gestionar varias acciones, el orden de ejecución se basa en la secuencia."
|
||||
" Los números más 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 se debe activar la condición.\n"
|
||||
" Si se encuentra seleccionada, la revisará el programador. De lo contrario, se revisará en la creación y actualizació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 ""
|
||||
"Si no se encuentra seleccionada, 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 ""
|
||||
"Escriba el código Python que ejecutará la acción. Algunas variables están "
|
||||
"disponibles para su uso. Puede encontrar más información sobre la expresión "
|
||||
"de Python en la pestaña de ayuda."
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
"Puede pedirle a un administrador que desactive o corrija esta acción "
|
||||
"automatizada."
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
"Puede deshabilitar esta acción automatizada o editarla para resolver el "
|
||||
"problema."
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
"No puede enviar un correo, agregar seguidores o crear una actividad para un "
|
||||
"registro eliminado."
|
||||
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,576 +0,0 @@
|
|||
# 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 ""
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,624 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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__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
|
||||
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,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered 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__mail_post_method
|
||||
msgid "Send as"
|
||||
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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
982
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/ku.po
Normal file
982
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/ku.po
Normal file
|
|
@ -0,0 +1,982 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-09 15:13+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/base_automation/ckb/>\n"
|
||||
"Language: ku\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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/group_config_menu_patch.js:0
|
||||
msgid "\"%s\" tag is added"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"\"On live update\" automation rules can only be used with \"Execute Python "
|
||||
"Code\" action type."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_actions_one2many_field.js:0
|
||||
msgid "%s actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_actions_one2many_field.js:0
|
||||
msgid "1 action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "<code>env</code>: environment on which the action is triggered"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<code>model</code>: model of the record on which the action is triggered; is "
|
||||
"a void recordset"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<code>payload</code>: the payload of the call (GET parameters, JSON body), "
|
||||
"as a dict."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<code>time</code>, <code>datetime</code>, <code>dateutil</code>, "
|
||||
"<code>timezone</code>: useful Python libraries"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
msgid "<i class=\"fa fa-2x fa-arrow-right text-primary\" title=\"Actions\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-info-circle\"/> The default target record getter will work "
|
||||
"out-of-the-box for any webhook coming from another Odoo instance."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-warning\"/> Automation rules triggered by UI changes will "
|
||||
"be executed <em>every time</em> the watched fields change, <em>whether you "
|
||||
"save or not</em>."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_server_action_form
|
||||
msgid "<span class=\"o_stat_text\">Automation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "<span class=\"text-muted\"> Available variables: </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr "کردەوەی پێویستە"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_ids
|
||||
msgid "Actions"
|
||||
msgstr "کردارەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Actions To Do"
|
||||
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_ids
|
||||
msgid "Activities"
|
||||
msgstr "چالاکیەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_exception_decoration
|
||||
msgid "Activity Exception Decoration"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_state
|
||||
msgid "Activity State"
|
||||
msgstr "دۆخی چالاکییەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_icon
|
||||
msgid "Activity Type Icon"
|
||||
msgstr "ئایکۆنی جۆری چالاکیی"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_mode__after
|
||||
msgid "After"
|
||||
msgstr "دواتر"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time_created
|
||||
msgid "After creation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time_updated
|
||||
msgid "After last update"
|
||||
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_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
msgid "Archived"
|
||||
msgstr "ئەرشیف کراوە"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
msgstr "ژمارەی هاوپێچەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Automate <em>everything</em> with Automation Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__base_automation_id
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__base_automation_id
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Automation Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Automation Rule Name"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
msgid "Automation Rules: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/group_config_menu_patch.js:0
|
||||
msgid "Automations"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on date field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_mode__before
|
||||
msgid "Before"
|
||||
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__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Custom"
|
||||
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__trg_date_range
|
||||
msgid "Delay"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_mode
|
||||
msgid "Delay mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"Delay must be positive. Set 'Delay mode' to 'Before' to negate the delay."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay unit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Deprecated (do not use)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__description
|
||||
msgid "Description"
|
||||
msgstr "وەسف"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid "Disable"
|
||||
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_ir_actions_server__display_name
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Email Events"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"Email, follower or activity action types cannot be used when deleting "
|
||||
"records, as there are no more records to apply these changes to!"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "External"
|
||||
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__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr "فۆڵۆوەرەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr "فۆڵۆوەرەکان (هاوبەشەکان)"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Following child actions have warnings: %(children)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_type_icon
|
||||
msgid "Font awesome icon e.g. fa-tasks"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_is_mail_thread
|
||||
msgid "Has Mail Thread"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__has_message
|
||||
msgid "Has Message"
|
||||
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_ir_actions_server__id
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_exception_icon
|
||||
msgid "Icon"
|
||||
msgstr "ئایکۆن"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_exception_icon
|
||||
msgid "Icon to indicate an exception activity."
|
||||
msgstr "ئایکۆن بۆ ئاماژەدان بە چالاکیەکی ئیستسناء."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr "ئەگەر پشکنینیان بۆ کرا، پەیامە نوێیەکان پێویستیان بە سەرنجی تۆ هەیە."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_has_error
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_has_sms_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
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 automation "
|
||||
"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. Not checked on record creation."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"If renewed, update the secret URL in the third-party app that calls this "
|
||||
"webhook."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search
|
||||
msgid "Include Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr "فۆڵۆوەرە"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Keep track of what this automation does and why it exists..."
|
||||
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__log_webhook_calls
|
||||
msgid "Log Calls"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"Mail event can not be configured on model %s. Only models with discussion "
|
||||
"feature can be used."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr "نامەکە هەڵەی گەیاندنی تیایە"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_ids
|
||||
msgid "Messages"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/ir_actions_server.py:0
|
||||
msgid ""
|
||||
"Model of action %(action_name)s should match the one from automated rule %"
|
||||
"(rule_name)s."
|
||||
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__my_activity_date_deadline
|
||||
msgid "My Activity Deadline"
|
||||
msgstr "دوا وادەی چالاکییەکانم"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_calendar_event_id
|
||||
msgid "Next Activity Calendar Event"
|
||||
msgstr "چالاکییەکانی داهاتووی ڕووداوی ساڵنامە"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline
|
||||
msgid "Next Activity Deadline"
|
||||
msgstr "دوا وادەی چالاکییەکانی داهاتوو"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary
|
||||
msgid "Next Activity Summary"
|
||||
msgstr "پوختەی چالاکییەکانی داهاتوو"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Next Activity Type"
|
||||
msgstr "جۆری چالاکیی داهاتوو"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "No record to run the automation on was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Notes"
|
||||
msgstr "تێبینیەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr "ژمارەی کردارەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr "ژمارەی هەڵەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr "ژمارەی ئەو نامانەی کە پێویستیان بە کردار هەیە"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
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_change
|
||||
msgid "On UI change"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_archive
|
||||
msgid "On archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create
|
||||
msgid "On create"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write
|
||||
msgid "On create and edit"
|
||||
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_message_received
|
||||
msgid "On incoming message"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_message_sent
|
||||
msgid "On outgoing message"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unarchive
|
||||
msgid "On unarchived"
|
||||
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.selection,name:base_automation.selection__base_automation__trigger__on_webhook
|
||||
msgid "On webhook"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__previous_domain
|
||||
msgid "Previous Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_priority_set
|
||||
msgid "Priority is set to"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__rating_ids
|
||||
msgid "Ratings"
|
||||
msgstr "هەڵسەنگاندنەکان"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__record_getter
|
||||
msgid "Record Getter"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible User"
|
||||
msgstr "بەکارهێنەری بەرپرسیار"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_has_sms_error
|
||||
msgid "SMS Delivery error"
|
||||
msgstr "هەڵەی گەیاندنی کورتەنامە"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_cron
|
||||
msgid "Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Scheduled action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Secret URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Select a date field..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Select a value..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Select fields..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"Send an email when an object changes state, archive records\n"
|
||||
" after a month of inactivity or remind yourself to follow-up "
|
||||
"on\n"
|
||||
" tasks when a specific tag is added."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:digest.tip,tip_description:base_automation.digest_tip_base_automation_0
|
||||
msgid ""
|
||||
"Send an email when an object changes state, archive records after a month of "
|
||||
"inactivity or remind yourself to follow-up on tasks when a specific tag is "
|
||||
"added.<br>With Automation Rules, you can automate any workflow."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Set an explicit name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_selection_field_id
|
||||
msgid ""
|
||||
"Some triggers need a reference to a selection field. This field is used to "
|
||||
"store it."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_field_ref
|
||||
msgid ""
|
||||
"Some triggers need a reference to another field. This field is used to store "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_stage_set
|
||||
msgid "Stage is set to"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/group_config_menu_patch.js:0
|
||||
msgid "Stage is set to \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_state_set
|
||||
msgid "State is set to"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_state
|
||||
msgid ""
|
||||
"Status based on activities\n"
|
||||
"Overdue: Due date is already passed\n"
|
||||
"Today: Activity date is today\n"
|
||||
"Planned: Future activities."
|
||||
msgstr ""
|
||||
"دۆخەکان لەسەر بنەمای چالاکییەکان\n"
|
||||
"دواکەوتوو: بەرواری کۆتایی هاتنی لە ئێستاوە تێپەڕیوە\n"
|
||||
"ئەمڕۆ: بەرواری چالاکی ئەمڕۆیە\n"
|
||||
"پلان بۆ داڕێژراو: چالاکییەکانی داهاتوو."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_tag_set
|
||||
msgid "Tag is added"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Target Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Target model of actions %(action_names)s are different from rule model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
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 automation rule will be triggered if and only if one of these fields is "
|
||||
"updated.If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automation rule\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "The scheduled action for Automation Rules seems to have vanished."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__record_getter
|
||||
msgid ""
|
||||
"This code will be run to find on which record the automation rule should be "
|
||||
"run."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Timing Conditions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:digest.tip,name:base_automation.digest_tip_base_automation_0
|
||||
#: model_terms:digest.tip,tip_description:base_automation.digest_tip_base_automation_0
|
||||
msgid "Tip: Automate everything with Automation Rules"
|
||||
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__trg_selection_field_id
|
||||
msgid "Trigger Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_field_ref_model_name
|
||||
msgid "Trigger Field Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "Trigger Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_field_ref
|
||||
msgid "Trigger Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_exception_decoration
|
||||
msgid "Type of the exception activity on record."
|
||||
msgstr "جۆری چالاکیی ئیستسنای تۆمارکراو."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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:ir.model.fields,help:base_automation.field_base_automation__url
|
||||
msgid "Use this URL in the third-party app to call this webhook."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_user_set
|
||||
msgid "User is set"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Values Updated"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Warning"
|
||||
msgstr "ئاگادار کردنەوە"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Webhook Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Webhook Logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__webhook_uuid
|
||||
msgid "Webhook UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_message_ids
|
||||
msgid "Website Messages"
|
||||
msgstr "پەیامەکانی ماڵپەڕ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_message_ids
|
||||
msgid "Website communication history"
|
||||
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__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_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "When updating"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"With Automation Rules, you can automate\n"
|
||||
" <em>any</em> workflow."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid "You can ask an administrator to disable or fix this automation."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
msgid "based on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_actions_one2many_field.xml:0
|
||||
msgid "no action defined..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "path"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,629 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
# Nikhil Krishnan, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Nikhil Krishnan, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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__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
|
||||
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,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered 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__mail_post_method
|
||||
msgid "Send as"
|
||||
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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,629 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
# Imran Pathan, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Imran Pathan, 2024\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 "Aktif"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Activity"
|
||||
msgstr "Aktiviti"
|
||||
|
||||
#. 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__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 "Diarkibkan"
|
||||
|
||||
#. 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
|
||||
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,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 paparan"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
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 "Terakhir Diubah suai 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 "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir 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 ""
|
||||
|
||||
#. 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 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 ""
|
||||
|
||||
#. 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 "Months"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Nota"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered 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 "Bertanggungjawab"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__mail_post_method
|
||||
msgid "Send as"
|
||||
msgstr ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Amaran"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
979
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/my.po
Normal file
979
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/my.po
Normal file
|
|
@ -0,0 +1,979 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Oakarmin Iron <oakarminiron@gmail.com>, 2025, 2026.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:53+0000\n"
|
||||
"Last-Translator: Oakarmin Iron <oakarminiron@gmail.com>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"base_automation/my/>\n"
|
||||
"Language: my\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"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/group_config_menu_patch.js:0
|
||||
msgid "\"%s\" tag is added"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"\"On live update\" automation rules can only be used with \"Execute Python "
|
||||
"Code\" action type."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_actions_one2many_field.js:0
|
||||
msgid "%s actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_actions_one2many_field.js:0
|
||||
msgid "1 action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "<code>env</code>: environment on which the action is triggered"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<code>model</code>: model of the record on which the action is triggered; is "
|
||||
"a void recordset"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<code>payload</code>: the payload of the call (GET parameters, JSON body), "
|
||||
"as a dict."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<code>time</code>, <code>datetime</code>, <code>dateutil</code>, "
|
||||
"<code>timezone</code>: useful Python libraries"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
msgid "<i class=\"fa fa-2x fa-arrow-right text-primary\" title=\"Actions\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-info-circle\"/> The default target record getter will work "
|
||||
"out-of-the-box for any webhook coming from another Odoo instance."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-warning\"/> Automation rules triggered by UI changes will "
|
||||
"be executed <em>every time</em> the watched fields change, <em>whether you "
|
||||
"save or not</em>."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_server_action_form
|
||||
msgid "<span class=\"o_stat_text\">Automation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "<span class=\"text-muted\"> Available variables: </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_ids
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Actions To Do"
|
||||
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_ids
|
||||
msgid "Activities"
|
||||
msgstr "လှုပ်ရှားမှုများ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_exception_decoration
|
||||
msgid "Activity Exception Decoration"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_state
|
||||
msgid "Activity State"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_icon
|
||||
msgid "Activity Type Icon"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_mode__after
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time_created
|
||||
msgid "After creation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time_updated
|
||||
msgid "After last update"
|
||||
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_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
msgid "Archived"
|
||||
msgstr "သိမ်းဆည်းထားသည်"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Automate <em>everything</em> with Automation Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__base_automation_id
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__base_automation_id
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Automation Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Automation Rule Name"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
msgid "Automation Rules: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/group_config_menu_patch.js:0
|
||||
msgid "Automations"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on date field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_mode__before
|
||||
msgid "Before"
|
||||
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__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Custom"
|
||||
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__trg_date_range
|
||||
msgid "Delay"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_mode
|
||||
msgid "Delay mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"Delay must be positive. Set 'Delay mode' to 'Before' to negate the delay."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay unit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Deprecated (do not use)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__description
|
||||
msgid "Description"
|
||||
msgstr "ဖော်ပြချက်"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid "Disable"
|
||||
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_ir_actions_server__display_name
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ပြသသော အမည်"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid "Edit"
|
||||
msgstr "ပြင်"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Email Events"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"Email, follower or activity action types cannot be used when deleting "
|
||||
"records, as there are no more records to apply these changes to!"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "External"
|
||||
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__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr "ဖော်လိုဝါများ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Following child actions have warnings: %(children)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_type_icon
|
||||
msgid "Font awesome icon e.g. fa-tasks"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_is_mail_thread
|
||||
msgid "Has Mail Thread"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__has_message
|
||||
msgid "Has Message"
|
||||
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_ir_actions_server__id
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__id
|
||||
msgid "ID"
|
||||
msgstr "နံပါတ်"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_exception_icon
|
||||
msgid "Icon"
|
||||
msgstr "အိုင်ကွန်"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_exception_icon
|
||||
msgid "Icon to indicate an exception activity."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_has_error
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_has_sms_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
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 automation "
|
||||
"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. Not checked on record creation."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid ""
|
||||
"If renewed, update the secret URL in the third-party app that calls this "
|
||||
"webhook."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search
|
||||
msgid "Include Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Keep track of what this automation does and why it exists..."
|
||||
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__log_webhook_calls
|
||||
msgid "Log Calls"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Logs"
|
||||
msgstr "လော့ဂျ်များ"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"Mail event can not be configured on model %s. Only models with discussion "
|
||||
"feature can be used."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_ids
|
||||
msgid "Messages"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/ir_actions_server.py:0
|
||||
msgid ""
|
||||
"Model of action %(action_name)s should match the one from automated rule %"
|
||||
"(rule_name)s."
|
||||
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__my_activity_date_deadline
|
||||
msgid "My Activity Deadline"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_calendar_event_id
|
||||
msgid "Next Activity Calendar Event"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline
|
||||
msgid "Next Activity Deadline"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary
|
||||
msgid "Next Activity Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Next Activity Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "No record to run the automation on was found."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Notes"
|
||||
msgstr "မှတ်စုများ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr "အယ်ရာ အရေအတွက်"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
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_change
|
||||
msgid "On UI change"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_archive
|
||||
msgid "On archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create
|
||||
msgid "On create"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write
|
||||
msgid "On create and edit"
|
||||
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_message_received
|
||||
msgid "On incoming message"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_message_sent
|
||||
msgid "On outgoing message"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unarchive
|
||||
msgid "On unarchived"
|
||||
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.selection,name:base_automation.selection__base_automation__trigger__on_webhook
|
||||
msgid "On webhook"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__previous_domain
|
||||
msgid "Previous Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_priority_set
|
||||
msgid "Priority is set to"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__rating_ids
|
||||
msgid "Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__record_getter
|
||||
msgid "Record Getter"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Renew"
|
||||
msgstr "ပြန်သစ်"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible User"
|
||||
msgstr "တာဝန်ရှိသူ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__message_has_sms_error
|
||||
msgid "SMS Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_cron
|
||||
msgid "Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Scheduled action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Secret URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Select a date field..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Select a value..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Select fields..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"Send an email when an object changes state, archive records\n"
|
||||
" after a month of inactivity or remind yourself to follow-up "
|
||||
"on\n"
|
||||
" tasks when a specific tag is added."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:digest.tip,tip_description:base_automation.digest_tip_base_automation_0
|
||||
msgid ""
|
||||
"Send an email when an object changes state, archive records after a month of "
|
||||
"inactivity or remind yourself to follow-up on tasks when a specific tag is "
|
||||
"added.<br>With Automation Rules, you can automate any workflow."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Set an explicit name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_selection_field_id
|
||||
msgid ""
|
||||
"Some triggers need a reference to a selection field. This field is used to "
|
||||
"store it."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_field_ref
|
||||
msgid ""
|
||||
"Some triggers need a reference to another field. This field is used to store "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_stage_set
|
||||
msgid "Stage is set to"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/group_config_menu_patch.js:0
|
||||
msgid "Stage is set to \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_state_set
|
||||
msgid "State is set to"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_state
|
||||
msgid ""
|
||||
"Status based on activities\n"
|
||||
"Overdue: Due date is already passed\n"
|
||||
"Today: Activity date is today\n"
|
||||
"Planned: Future activities."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_tag_set
|
||||
msgid "Tag is added"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Target Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Target model of actions %(action_names)s are different from rule model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
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 automation rule will be triggered if and only if one of these fields is "
|
||||
"updated.If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automation rule\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "The scheduled action for Automation Rules seems to have vanished."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__record_getter
|
||||
msgid ""
|
||||
"This code will be run to find on which record the automation rule should be "
|
||||
"run."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Timing Conditions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:digest.tip,name:base_automation.digest_tip_base_automation_0
|
||||
#: model_terms:digest.tip,tip_description:base_automation.digest_tip_base_automation_0
|
||||
msgid "Tip: Automate everything with Automation Rules"
|
||||
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__trg_selection_field_id
|
||||
msgid "Trigger Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_field_ref_model_name
|
||||
msgid "Trigger Field Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "Trigger Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_field_ref
|
||||
msgid "Trigger Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_exception_decoration
|
||||
msgid "Type of the exception activity on record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__url
|
||||
msgid "Url"
|
||||
msgstr "ယူအာအယ်"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_actions_server__usage
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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:ir.model.fields,help:base_automation.field_base_automation__url
|
||||
msgid "Use this URL in the third-party app to call this webhook."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_user_set
|
||||
msgid "User is set"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_trigger_selection_field.js:0
|
||||
msgid "Values Updated"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Warning"
|
||||
msgstr "❗သတိပေးချက်"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Webhook Log"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "Webhook Logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__webhook_uuid
|
||||
msgid "Webhook UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_message_ids
|
||||
msgid "Website Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_message_ids
|
||||
msgid "Website communication history"
|
||||
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__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_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "When updating"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"With Automation Rules, you can automate\n"
|
||||
" <em>any</em> workflow."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_error_dialog.xml:0
|
||||
msgid "You can ask an administrator to disable or fix this automation."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_kanban
|
||||
msgid "based on"
|
||||
msgstr "အခြေတည်၍"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/base_automation_actions_one2many_field.xml:0
|
||||
msgid "no action defined..."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
msgid "path"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,624 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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__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
|
||||
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,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered 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__mail_post_method
|
||||
msgid "Send as"
|
||||
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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,652 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.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
|
||||
#. odoo-javascript
|
||||
#: 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 radnje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Uraditi"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Vrsta radnje"
|
||||
|
||||
#. 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__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 "Prijavite se 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 "Automatizovana 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
|
||||
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 "Before Update Domain"
|
||||
|
||||
#. 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 "Binding View Types"
|
||||
|
||||
#. 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,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
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 "dana"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 za prikaz"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr "Due Date In"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr "Due type"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 šablon"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id
|
||||
msgid "External ID"
|
||||
msgstr "Spoljni 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 "Fields that trigger the onchange."
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
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 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 ""
|
||||
"If present, this condition must be satisfied before the update of the "
|
||||
"record."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr "Last Run"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. 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 "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__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 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 "Meseci"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Beleška"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered 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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
"Opcioni tekst pomoći za korisnike sa opisom ciljnog pregleda, kao što su "
|
||||
"korišćenje i svrha."
|
||||
|
||||
#. 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 "Odgovorno lice"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__mail_post_method
|
||||
msgid "Send as"
|
||||
msgstr "Pošalji kao"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Niz"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
||||
"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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
msgstr "Subscribe Recipients"
|
||||
|
||||
#. 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,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 Model Name"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"The \"%(trigger_value)s\" %(trigger_label)s can only be used with the "
|
||||
"\"%(state_value)s\" action 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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 okidanja"
|
||||
|
||||
#. 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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 "Use 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: 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 ""
|
||||
"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 ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
|
||||
#. 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 "When unchecked, the rule is hidden and will not be executed."
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,624 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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__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
|
||||
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,help:base_automation.field_base_automation__mail_post_method
|
||||
msgid ""
|
||||
"Choose method for email sending:\n"
|
||||
"EMail: send directly emails\n"
|
||||
"Post as Message: post on document and notify followers\n"
|
||||
"Post as Note: log a note on document"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Email, followers or activities action types cannot be used when deleting "
|
||||
"records."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Form Modification based actions can only be used with code action type."
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Note that this action can be triggered 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__mail_post_method
|
||||
msgid "Send as"
|
||||
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__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 a new Record': 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': post a message, a note or send an email (Discuss)\n"
|
||||
"- 'Add Followers': add followers to a record (Discuss)\n"
|
||||
"- 'Create Next Activity': create an activity (Discuss)\n"
|
||||
"- 'Send SMS Text Message': send SMS, log them on documents (SMS)"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:base_automation.field_ir_cron__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
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#. odoo-python
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You cannot send an email, add followers or create an activity for a deleted "
|
||||
"record. It simply does not work."
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1220
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/uz.po
Normal file
1220
odoo-bringout-oca-ocb-base_automation/base_automation/i18n/uz.po
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,12 +1,78 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo.tools.json import scriptsafe as json_scriptsafe
|
||||
|
||||
from odoo import fields, models
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.fields import Domain
|
||||
|
||||
from .base_automation import get_webhook_request_payload
|
||||
|
||||
|
||||
class ServerAction(models.Model):
|
||||
class IrActionsServer(models.Model):
|
||||
_inherit = "ir.actions.server"
|
||||
|
||||
usage = fields.Selection(selection_add=[
|
||||
('base_automation', 'Automated Action')
|
||||
('base_automation', 'Automation Rule')
|
||||
], ondelete={'base_automation': 'cascade'})
|
||||
base_automation_id = fields.Many2one('base.automation', string='Automation Rule', index='btree_not_null', ondelete='cascade')
|
||||
|
||||
@api.model
|
||||
def _warning_depends(self):
|
||||
return super()._warning_depends() + [
|
||||
'model_id',
|
||||
'base_automation_id',
|
||||
]
|
||||
|
||||
def _get_warning_messages(self):
|
||||
self.ensure_one()
|
||||
warnings = super()._get_warning_messages()
|
||||
|
||||
if self.base_automation_id and self.model_id != self.base_automation_id.model_id:
|
||||
warnings.append(
|
||||
_("Model of action %(action_name)s should match the one from automated rule %(rule_name)s.",
|
||||
action_name=self.name,
|
||||
rule_name=self.base_automation_id.name
|
||||
)
|
||||
)
|
||||
|
||||
return warnings
|
||||
|
||||
def _get_children_domain(self):
|
||||
# As automation rules' actions does not have a parent,
|
||||
# we make sure multi actions can not link to automation rules' actions.
|
||||
return super()._get_children_domain() & Domain("base_automation_id", "=", False)
|
||||
|
||||
@api.depends('usage')
|
||||
def _compute_available_model_ids(self):
|
||||
""" Stricter model limit: based on automation rule """
|
||||
super()._compute_available_model_ids()
|
||||
rule_based = self.filtered(lambda action: action.usage == 'base_automation')
|
||||
for action in rule_based:
|
||||
rule_model = action.base_automation_id.model_id
|
||||
action.available_model_ids = rule_model.ids if rule_model in action.available_model_ids else []
|
||||
|
||||
def _get_eval_context(self, action=None):
|
||||
eval_context = super()._get_eval_context(action)
|
||||
if action and action.state == "code":
|
||||
eval_context['json'] = json_scriptsafe
|
||||
payload = get_webhook_request_payload()
|
||||
if payload:
|
||||
eval_context["payload"] = payload
|
||||
return eval_context
|
||||
|
||||
def action_open_automation(self):
|
||||
return {
|
||||
"type": "ir.actions.act_window",
|
||||
"target": "current",
|
||||
"views": [[False, "form"]],
|
||||
"res_model": self.base_automation_id._name,
|
||||
"res_id": self.base_automation_id.id,
|
||||
}
|
||||
|
||||
|
||||
# Also extend IrCron because of missing methods due to delegation inheritance
|
||||
class IrCron(models.Model):
|
||||
_inherit = "ir.cron"
|
||||
|
||||
def action_open_automation(self):
|
||||
return self.ir_actions_server_id.action_open_automation()
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 44 KiB |
|
|
@ -0,0 +1,51 @@
|
|||
.o_base_automation_kanban_view {
|
||||
.o_kanban_ungrouped {
|
||||
padding: 0;
|
||||
|
||||
.o_kanban_record {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
|
||||
&.o_kanban_ghost {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.o_base_automation_kanban_view {
|
||||
.o_kanban_grouped .row {
|
||||
flex-direction: column !important;
|
||||
gap: 0.5rem !important;
|
||||
|
||||
> * {
|
||||
width: 100% !important;
|
||||
|
||||
> * {
|
||||
margin: 0 0.5rem !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.o_kanban_ungrouped .o_kanban_record {
|
||||
border-top: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.o_widget_web_ribbon {
|
||||
align-self: flex-start;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.o_base_automation_error {
|
||||
pre {
|
||||
max-height: 25vh !important;
|
||||
}
|
||||
}
|
||||
|
||||
.o_field_base_automation_trigger_selection select {
|
||||
option, optgroup {
|
||||
background-color: $dropdown-bg;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,88 @@
|
|||
import { Component, useExternalListener, useEffect, useRef } from "@odoo/owl";
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { useThrottleForAnimation } from "@web/core/utils/timing";
|
||||
|
||||
class ActionsOne2ManyField extends Component {
|
||||
static props = ["*"];
|
||||
static template = "base_automation.ActionsOne2ManyField";
|
||||
setup() {
|
||||
this.root = useRef("root");
|
||||
|
||||
let adaptCounter = 0;
|
||||
useEffect(
|
||||
() => {
|
||||
this.adapt();
|
||||
},
|
||||
() => [adaptCounter]
|
||||
);
|
||||
const throttledRenderAndAdapt = useThrottleForAnimation(() => {
|
||||
adaptCounter++;
|
||||
this.render();
|
||||
});
|
||||
useExternalListener(window, "resize", throttledRenderAndAdapt);
|
||||
this.currentActions = this.props.record.data[this.props.name].records;
|
||||
this.hiddenActionsCount = 0;
|
||||
}
|
||||
async adapt() {
|
||||
// --- Initialize ---
|
||||
// use getBoundingClientRect to get unrounded width
|
||||
// of the elements in order to avoid rounding issues
|
||||
const rootWidth = this.root.el.getBoundingClientRect().width;
|
||||
|
||||
// remove all d-none classes (needed to get the real width of the elements)
|
||||
const actionsEls = Array.from(this.root.el.children).filter((el) => el.dataset.actionId);
|
||||
actionsEls.forEach((el) => el.classList.remove("d-none"));
|
||||
const actionsTotalWidth = actionsEls.reduce(
|
||||
(sum, el) => sum + el.getBoundingClientRect().width,
|
||||
0
|
||||
);
|
||||
|
||||
// --- Check first overflowing action ---
|
||||
let overflowingActionId;
|
||||
if (actionsTotalWidth > rootWidth) {
|
||||
let width = 56; // for the ellipsis
|
||||
for (const el of actionsEls) {
|
||||
const elWidth = el.getBoundingClientRect().width;
|
||||
if (width + elWidth > rootWidth) {
|
||||
// All the remaining elements are overflowing
|
||||
overflowingActionId = el.dataset.actionId;
|
||||
const firstOverflowingEl = actionsEls.find(
|
||||
(el) => el.dataset.actionId === overflowingActionId
|
||||
);
|
||||
const firstOverflowingIndex = actionsEls.indexOf(firstOverflowingEl);
|
||||
const overflowingEls = actionsEls.slice(firstOverflowingIndex);
|
||||
// hide overflowing elements
|
||||
overflowingEls.forEach((el) => el.classList.add("d-none"));
|
||||
break;
|
||||
}
|
||||
width += elWidth;
|
||||
}
|
||||
}
|
||||
|
||||
// --- Final rendering ---
|
||||
const initialHiddenActionsCount = this.hiddenActionsCount;
|
||||
this.hiddenActionsCount = overflowingActionId
|
||||
? this.currentActions.length -
|
||||
this.currentActions.findIndex((action) => action.id === overflowingActionId)
|
||||
: 0;
|
||||
if (initialHiddenActionsCount !== this.hiddenActionsCount) {
|
||||
// Render only if hidden actions count has changed.
|
||||
return this.render();
|
||||
}
|
||||
}
|
||||
get moreText() {
|
||||
const isPlural = this.hiddenActionsCount > 1;
|
||||
return isPlural ? _t("%s actions", this.hiddenActionsCount) : _t("1 action");
|
||||
}
|
||||
}
|
||||
|
||||
const actionsOne2ManyField = {
|
||||
component: ActionsOne2ManyField,
|
||||
relatedFields: [
|
||||
{ name: "name", type: "char" },
|
||||
{ name: "state", type: "selection" },
|
||||
],
|
||||
};
|
||||
|
||||
registry.category("fields").add("base_automation_actions_one2many", actionsOne2ManyField);
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<templates>
|
||||
<t t-name="base_automation.ActionsOne2ManyField">
|
||||
<div class="d-flex align-items-center" t-ref="root">
|
||||
<t t-if="currentActions.length === 0">
|
||||
<span class="text-muted">no action defined...</span>
|
||||
</t>
|
||||
<t t-foreach="currentActions" t-as="action" t-key="action.id">
|
||||
<div style="min-width: fit-content;" t-att-data-action-id="action.id">
|
||||
<div class="fs-5 d-flex align-items-center">
|
||||
<i
|
||||
data-name="server_action_icon"
|
||||
class="fa"
|
||||
t-att-class="{
|
||||
'code': 'fa-code',
|
||||
'object_create': 'fa-plus-square',
|
||||
'object_copy': 'fa-clone',
|
||||
'object_write': 'fa-pencil',
|
||||
'multi': 'fa-list-ul',
|
||||
'mail_post': 'fa-envelope',
|
||||
'followers': 'fa-user',
|
||||
'remove_followers': 'fa-user-times',
|
||||
'next_activity': 'fa-clock-o',
|
||||
'sms': 'fa-mobile',
|
||||
'webhook': 'fa-paper-plane',
|
||||
'whatsapp': 'fa-whatsapp',
|
||||
}[action.data.state] || 'fa-circle-thin'"
|
||||
/>
|
||||
<div class="ps-2" t-esc="action.data.name" />
|
||||
</div>
|
||||
</div>
|
||||
<div t-if="!action_last" class="px-3 align-self-center" t-att-data-action-id="action.id">
|
||||
<i class="fa fa-lg fa-plus text-primary"></i>
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="hiddenActionsCount">
|
||||
<div class="fs-3 align-self-center text-muted text-nowrap">
|
||||
<t t-out="moreText"/>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
|
|
@ -1,16 +1,16 @@
|
|||
/** @odoo-module */
|
||||
|
||||
import { RPCErrorDialog } from "@web/core/errors/error_dialogs";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
import { user } from "@web/core/user";
|
||||
|
||||
export class BaseAutomationErrorDialog extends RPCErrorDialog {
|
||||
static template = "base_automation.ErrorDialog";
|
||||
setup() {
|
||||
super.setup(...arguments);
|
||||
const { id, name } = this.props.data.context.base_automation;
|
||||
this.actionId = id;
|
||||
this.actionName = name;
|
||||
this.isUserAdmin = useService("user").isAdmin;
|
||||
this.automationId = id;
|
||||
this.automationName = name;
|
||||
this.isUserAdmin = user.isAdmin;
|
||||
this.actionService = useService("action");
|
||||
this.orm = useService("orm");
|
||||
}
|
||||
|
|
@ -20,32 +20,30 @@ export class BaseAutomationErrorDialog extends RPCErrorDialog {
|
|||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* 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.
|
||||
* This method is called when the user clicks on the 'Disable Automation Rule' button
|
||||
* displayed when a crash occurs in the evaluation of an automation rule.
|
||||
* Then, we write `active` to `False` on the automation rule to disable it.
|
||||
*
|
||||
* @private
|
||||
* @param {MouseEvent} ev
|
||||
*/
|
||||
async disableAction(ev) {
|
||||
await this.orm.write("base.automation", [this.actionId], {
|
||||
active: false,
|
||||
});
|
||||
async disableAutomation(ev) {
|
||||
await this.orm.write("base.automation", [this.automationId], { active: false });
|
||||
this.props.close();
|
||||
}
|
||||
/**
|
||||
* 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.
|
||||
* displayed when a crash occurs in the evaluation of an automation rule.
|
||||
* Then, we redirect the user to the automation rule form.
|
||||
*
|
||||
* @private
|
||||
* @param {MouseEvent} ev
|
||||
*/
|
||||
editAction(ev) {
|
||||
editAutomation(ev) {
|
||||
this.actionService.doAction({
|
||||
name: "Automated Actions",
|
||||
name: "Automation Rules",
|
||||
res_model: "base.automation",
|
||||
res_id: this.actionId,
|
||||
res_id: this.automationId,
|
||||
views: [[false, "form"]],
|
||||
type: "ir.actions.act_window",
|
||||
view_mode: "form",
|
||||
|
|
@ -55,6 +53,4 @@ export class BaseAutomationErrorDialog extends RPCErrorDialog {
|
|||
}
|
||||
}
|
||||
|
||||
BaseAutomationErrorDialog.template = "base_automation.ErrorDialog";
|
||||
|
||||
registry.category("error_dialogs").add("base_automation", BaseAutomationErrorDialog);
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<templates>
|
||||
<t t-name="base_automation.ErrorDialog" t-inherit="web.ErrorDialog" t-inherit-mode="primary">
|
||||
<xpath expr="//div[@role='alert']" position="attributes">
|
||||
<attribute name="class" add="o_base_automation_error" separator=" "/>
|
||||
</xpath>
|
||||
<xpath expr="//div[@role='alert']/p[1]" position="after">
|
||||
<p class="mt-2">
|
||||
The error occurred during the execution of the automation rule
|
||||
"<t t-esc="automationName"/>"
|
||||
(ID: <t t-esc="automationId"/>).
|
||||
</p>
|
||||
<p t-if="!isUserAdmin">
|
||||
You can ask an administrator to disable or fix this automation.
|
||||
</p>
|
||||
</xpath>
|
||||
<xpath expr="//t[@t-set-slot='footer']" position="inside">
|
||||
<t t-if="isUserAdmin">
|
||||
<button class="btn btn-secondary ms-auto ms-md-2 o_disable_action_button" t-on-click.prevent="disableAutomation">Disable</button>
|
||||
<button class="btn btn-secondary ms-auto ms-md-2 o_edit_action_button" t-on-click.prevent="editAutomation">Edit</button>
|
||||
</t>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue