Начальное наполнение
This commit is contained in:
parent
36dd3928cf
commit
e706b6ecea
5
__init__.py
Normal file
5
__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import controllers
|
34
__manifest__.py
Normal file
34
__manifest__.py
Normal file
@ -0,0 +1,34 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Automation Rules',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Sales',
|
||||
'description': """
|
||||
This module allows to implement automation rules for any object.
|
||||
================================================================
|
||||
|
||||
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', 'sms'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'data/base_automation_data.xml',
|
||||
'views/ir_actions_server_views.xml',
|
||||
'views/base_automation_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'base_automation/static/src/**/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'base_automation/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
1
controllers/__init__.py
Normal file
1
controllers/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
from . import main
|
18
controllers/main.py
Normal file
18
controllers/main.py
Normal file
@ -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='none', 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)
|
16
data/base_automation_data.xml
Normal file
16
data/base_automation_data.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="ir_cron_data_base_automation_check" model="ir.cron">
|
||||
<field name="name">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="interval_number">4</field>
|
||||
<field name="interval_type">hours</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field name="doall" eval="False"/>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
632
i18n/af.po
Normal file
632
i18n/af.po
Normal file
@ -0,0 +1,632 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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 "Aktief"
|
||||
|
||||
#. 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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Geskep deur"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Laas Gewysig op"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Volgorde"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
628
i18n/am.po
Normal file
628
i18n/am.po
Normal file
@ -0,0 +1,628 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1122
i18n/ar.po
Normal file
1122
i18n/ar.po
Normal file
File diff suppressed because it is too large
Load Diff
638
i18n/az.po
Normal file
638
i18n/az.po
Normal file
@ -0,0 +1,638 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__help
|
||||
msgid "Action Description"
|
||||
msgstr "Fəaliyyətin Təsviri"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Action Name"
|
||||
msgstr "Fəaliyyətin Adı"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Görüləcək İş Fəaliyyəti"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Fəaliyyətin Növü"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Activity"
|
||||
msgstr "Fəaliyyət"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Activity User Type"
|
||||
msgstr "Fəaliyyət istifadəçi növü"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids
|
||||
msgid "Add Followers"
|
||||
msgstr "İzləyicilər əlavə edin"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain
|
||||
msgid "Apply on"
|
||||
msgstr "Tədbiq et"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search
|
||||
msgid "Archived"
|
||||
msgstr "Arxivləndi"
|
||||
|
||||
#. 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 "Avtomatlaşdırılmış Fəaliyyət"
|
||||
|
||||
#. 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 "Avtomatlaşdırılmış Fəaliyyətlər"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation"
|
||||
msgstr "Avtomatlaşdırma"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr "Veb saytda mövcuddur"
|
||||
|
||||
#. 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 "Əsas Fəaliyyət Qaydası: yoxlayın və icra edin"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr "Forma Modifikasiyasına əsaslanır"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr "Müddətli Vəziyyətə əsaslanır"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr "Domeni Yeniləmədən Əvvəl"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr "Əlaqələndirmə Modeli"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr "Əlaqələndirmə Növü"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr "Əlaqələndirmə Görünüş Növü"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr "Alt addımlar"
|
||||
|
||||
#. 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 "Həyata keçiriləcək alt Server addımları. Son qaytarılmış fəaliyyət dəyərinin qlobal qaytarma dəyəri olaraq istifadə ediləcəyini unutmayın."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Gün"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr "Səbəb olan hadisə tarixindən sonra gecikmə"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr "Gecikmə növü"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr "Fəaliyyəti Deaktiv edin"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr "Gözlənilən Tarix"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr "Gözlənilən tip"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr "Fəaliyyəti redaktə edin"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Email Şablonu"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Xarici ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Qruplar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour
|
||||
msgid "Hours"
|
||||
msgstr "Saatlar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id
|
||||
msgid "ID of the action if defined in a XML file"
|
||||
msgstr "XML fayl kimi müəyyən edilmiş hərəkətin ID-si"
|
||||
|
||||
#. 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 "Mövcuddursa, bu şərt hərəkət qaydası yerinə yetirilməzdən öncə yerinə yetirilməlidir."
|
||||
|
||||
#. 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 "Mövcuddursa, bu şərt qeyd yenilənməzdən öncə yerinə yetirilməlidir."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr "Son İşəsalma"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. 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 "Dəqiqələr"
|
||||
|
||||
#. 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 "Model Adı"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr "Qeydiyyatların yaradılması/yenilənməsi üçün model. Bu xananı yalnız əsas modeldən fərqli bir model təyin etmək üçün seçin."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr "Üzərində server fəaliyyəti aparılan model."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr "Aylar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Qeyd"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Dəyişmə Sahələrində Hərəkət Gətir"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create
|
||||
msgid "On Creation"
|
||||
msgstr "Tərtib haqqında"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write
|
||||
msgid "On Creation & Update"
|
||||
msgstr "Tərtib və Yenilənmə Haqqında"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink
|
||||
msgid "On Deletion"
|
||||
msgstr "Silinmə Haqqında"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write
|
||||
msgid "On Update"
|
||||
msgstr "Yenilənmə üzrə"
|
||||
|
||||
#. 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 "İstifadəsi və məqsədi kimi hədəf görünüşünün təsviri ilə istifadəçilər üçün istəyə bağlı kömək mətni."
|
||||
|
||||
#. 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 "Piton Kodu"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Məsul"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
msgstr "SMS Şablonu"
|
||||
|
||||
#. 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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Ardıcıllıq"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr "Server Fəaliyyəti"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr "Server Fəaliyyətləri"
|
||||
|
||||
#. 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 "Dəyərin təyin edilməsi, bu əməliyyatı verilmiş model üçün alətlər panelində əlçatan edir."
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr "Yeni avtomatlaşdırmanın quraşdırılması"
|
||||
|
||||
#. 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 "Xülasə"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Target Model"
|
||||
msgstr "Hədəf Modeli"
|
||||
|
||||
#. 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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr "\"%(trigger_value)s\" %(trigger_label)s yalnız \"%(state_value)s\" fəaliyyət növü ilə istifadə edilə bilər"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
msgstr "Veb sayt vasitəsilə server əməliyyatına daxil olmaq üçün tam URL."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger
|
||||
msgid "Trigger"
|
||||
msgstr "Tetikle"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id
|
||||
msgid "Trigger Date"
|
||||
msgstr "Başlatma Tarixi"
|
||||
|
||||
#. 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 "Sahələri Tetikleyin"
|
||||
|
||||
#. 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 "İstifadə"
|
||||
|
||||
#. 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 "Eyni istifadəçini hər zaman növbəti fəaliyyətə təyin etmək üçün 'Xüsusi İstifadəçi' dən istifadə edin. Qeyddə seçiləcək istifadəçinin xanadakı adını göstərmək üçün 'Qeyddəki Ümumi İstifadəçi' dən istifadə edin."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "Use Calendar"
|
||||
msgstr "Təqvimdən istifadə edin"
|
||||
|
||||
#. 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 ""
|
||||
"Müxtəlif ekranlar üçün əməliyyatları avtomatik aktivləşdirmək üçün \n"
|
||||
" avtomatik əməliyyatlardan istifadə edin. Məsələn: müəyyən bir istifadəçi tərəfindən yaradılan \n"
|
||||
" bir müştəri avtomatik olaraq müəyyən bir Satış Komandasına təyin edilə bilər və ya \n"
|
||||
" 14 gündən sonra gözləyən statusu olan fürsət avtomatik \n"
|
||||
" xatırlatma emailunu aktivləşdirə bilər."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name
|
||||
msgid "User field name"
|
||||
msgstr "İstifadəçı xanasının adı"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr "Dəyərin Qarşılaşdırılması"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Xəbərdarlıq"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr "Veb sayt Yolu"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr "Veb sayt URL-u"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr "Gün əsaslı vaxt şəraitini hesablayarkən, iş günlərinə əsasən tarixi hesablamaq üçün bir təqvimdən istifadə etmək mümkündür."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr "Birdən çox hərəkətlə qarşılaşdıqda, icra qaydası ardıcıllığa əsaslanır. Az say yüksək prioritet deməkdir."
|
||||
|
||||
#. 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 "Yoxlanılmadıqda, qayda gizlədilir və icra olunmayacaq."
|
||||
|
||||
#. 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 "Hərəkətin icra ediləcəyi Pyhton kodunu yazın. Bəzi dəyişənlər istifadə üçün mövcuddur; python ifadəsi ilə bağlı kömək tabında verilir."
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr "Administratordan bu avtomatik hərəkəti söndürməsini və ya düzəltməsini istəyə bilərsiniz."
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr "Bu avtomatlaşdırılmış hərəkəti deaktiv edə və ya məsələni həll edə bilərsiniz."
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1060
i18n/base_automation.pot
Normal file
1060
i18n/base_automation.pot
Normal file
File diff suppressed because it is too large
Load Diff
1075
i18n/bg.po
Normal file
1075
i18n/bg.po
Normal file
File diff suppressed because it is too large
Load Diff
633
i18n/bs.po
Normal file
633
i18n/bs.po
Normal file
@ -0,0 +1,633 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2018-10-08 06:49+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__help
|
||||
msgid "Action Description"
|
||||
msgstr "Opis akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Action Name"
|
||||
msgstr "Naziv akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Akcija za uraditi"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Tip akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Activity"
|
||||
msgstr "Aktivnost"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Activity User Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids
|
||||
msgid "Add Followers"
|
||||
msgstr "Dodaj pratioce"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_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 "Automatizirane radnje"
|
||||
|
||||
#. 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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr "Vezni model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr "Tip vezivanja"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr "Podređena akcija"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr "Podređena serverska akcija koja će biti izvršena. Zapamtite da će zadnja vraćena vrijednost akcije biti korišćena kao globalna vraćena vrijednost."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Kreirao"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Dani"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr "Odgodi nakon datuma okidanja"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr "Vrsta odgode"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Predložak email-a"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Externi ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain
|
||||
msgid "If present, this condition must be satisfied before executing the action rule."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "If present, this condition must be satisfied before the update of the record."
|
||||
msgstr "Ako je prisutan, ovaj uslov mora biti ispunjen prije ažuriranja zapisa."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr "Posljednje pokretanje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr "Minute"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Naziv modela"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr "Model na kojem se izvršava serverska akcija."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr "Mjeseci"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Zabilješka"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Opcionalni tekst pomoći za korisnike sa opisom ciljnog pogleda, kao što je njegova upotreba 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 "Odgovoran"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr "Serverska akcija"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr "Serverske akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr "Postavljanjem vrijednosti omogućava ovoj akciji da bude dostupna u meniju ovog modela."
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__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 "Sažetak"
|
||||
|
||||
#. 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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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 "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 ""
|
||||
|
||||
#. 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 "Upotreba"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Use 'Specific User' to always assign the same user on the next activity. Use 'Generic User From Record' to specify the field name of the user to choose on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "Use Calendar"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"Use automated actions to automatically trigger actions for\n"
|
||||
" various screens. Example: a lead created by a specific user may\n"
|
||||
" be automatically set to a specific Sales Team, or an\n"
|
||||
" opportunity which still has status pending after 14 days might\n"
|
||||
" trigger an automatic reminder email."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name
|
||||
msgid "User field name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr "Mapirana vrijednost"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
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 "Kada nije označeno, pravilo je skriveno i neće biti izvršeno."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1088
i18n/ca.po
Normal file
1088
i18n/ca.po
Normal file
File diff suppressed because it is too large
Load Diff
1139
i18n/cs.po
Normal file
1139
i18n/cs.po
Normal file
File diff suppressed because it is too large
Load Diff
1074
i18n/da.po
Normal file
1074
i18n/da.po
Normal file
File diff suppressed because it is too large
Load Diff
1148
i18n/de.po
Normal file
1148
i18n/de.po
Normal file
File diff suppressed because it is too large
Load Diff
632
i18n/el.po
Normal file
632
i18n/el.po
Normal file
@ -0,0 +1,632 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2018-10-08 06:49+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr "Με βάση Χρονική Συνθήκη"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr "Θυγατρικές Ενέργειες"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr "Θυγατρικές ενέργειες διακομιστή οι οποίες θα εκτελεστούν. Σημειωτέον ότι η τελευταία επιστροφή των επιστρεφόμενων ενεργειών θα χρησιμοποιηθεί σαν καθολική αξία επιστροφής."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Πρότυπο email"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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 "Python Code"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Υπεύθυνοι"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Ακολουθία"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr "Server Action"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr "Ενέργειες Διακομιστή"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Προσοχή"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr "Κατά τον υπολογισμό μιας χρονικής συνθήκης με βάση την ημέρα, είναι δυνατόν να χρησιμοποιήσει ένα ημερολόγιο για να υπολογιστεί η ημερομηνία με βάση τις εργάσιμες ημέρες."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr "Όταν αποεπιλεγεί, ο κανόνας είναι κρυμμένος και δεν θα εκτελεστεί."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
630
i18n/en_AU.po
Normal file
630
i18n/en_AU.po
Normal file
@ -0,0 +1,630 @@
|
||||
# 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: 2022-09-20 09:01+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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Created by"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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 "Responsible"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/en_GB.po
Normal file
631
i18n/en_GB.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: en_GB\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Created by"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1141
i18n/es.po
Normal file
1141
i18n/es.po
Normal file
File diff suppressed because it is too large
Load Diff
1141
i18n/es_419.po
Normal file
1141
i18n/es_419.po
Normal file
File diff suppressed because it is too large
Load Diff
631
i18n/es_BO.po
Normal file
631
i18n/es_BO.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_BO\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Última actualización de"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_CL.po
Normal file
631
i18n/es_CL.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 (identificación)"
|
||||
|
||||
#. 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 "Ú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__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__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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_CO.po
Normal file
631
i18n/es_CO.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_CO\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Ú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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_CR.po
Normal file
631
i18n/es_CR.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_CR\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_DO.po
Normal file
631
i18n/es_DO.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_DO\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 (identificación)"
|
||||
|
||||
#. 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 "Ú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__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__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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_EC.po
Normal file
631
i18n/es_EC.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_EC\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por:"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "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__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__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_PE.po
Normal file
631
i18n/es_PE.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_PE\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "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__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__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_PY.po
Normal file
631
i18n/es_PY.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_PY\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Ultima actualización por"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/es_VE.po
Normal file
631
i18n/es_VE.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+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"
|
||||
"Language: es_VE\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "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__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__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1082
i18n/et.po
Normal file
1082
i18n/et.po
Normal file
File diff suppressed because it is too large
Load Diff
631
i18n/eu.po
Normal file
631
i18n/eu.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Nork sortua"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Last Updated by"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekuentzia"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1072
i18n/fa.po
Normal file
1072
i18n/fa.po
Normal file
File diff suppressed because it is too large
Load Diff
1147
i18n/fi.po
Normal file
1147
i18n/fi.po
Normal file
File diff suppressed because it is too large
Load Diff
631
i18n/fo.po
Normal file
631
i18n/fo.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"Language: fo\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Byrjað av"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Seinast rættað tann"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1148
i18n/fr.po
Normal file
1148
i18n/fr.po
Normal file
File diff suppressed because it is too large
Load Diff
630
i18n/fr_BE.po
Normal file
630
i18n/fr_BE.po
Normal file
@ -0,0 +1,630 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-11-18 13:40+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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 "Actif"
|
||||
|
||||
#. 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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Créé par"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Jours"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Heures"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id
|
||||
msgid "ID of the action if defined in a XML file"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Dernière modification le"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr "Minutes"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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 "Responsable"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/fr_CA.po
Normal file
631
i18n/fr_CA.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"Language: fr_CA\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Créé par"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Identifiant"
|
||||
|
||||
#. 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 "Dernière modification le"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/gl.po
Normal file
631
i18n/gl.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Creado por"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Última actualización de"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
632
i18n/gu.po
Normal file
632
i18n/gu.po
Normal file
@ -0,0 +1,632 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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 "Active"
|
||||
|
||||
#. 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 "Archived"
|
||||
|
||||
#. 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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Created by"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Days"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "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__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__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 "Note"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1080
i18n/he.po
Normal file
1080
i18n/he.po
Normal file
File diff suppressed because it is too large
Load Diff
630
i18n/hi.po
Normal file
630
i18n/hi.po
Normal file
@ -0,0 +1,630 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2016-06-02 11:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-9/language/hi/)\n"
|
||||
"Language: hi\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
640
i18n/hr.po
Normal file
640
i18n/hr.po
Normal file
@ -0,0 +1,640 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Matej Mijoč, 2022
|
||||
# Milan Tribuson <one.mile.code@gmail.com>, 2022
|
||||
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2022
|
||||
# Igor Krizanovic <krizanovic.igor@gmail.com>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Tina Milas, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tina Milas, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__help
|
||||
msgid "Action Description"
|
||||
msgstr "Opis akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Action Name"
|
||||
msgstr "Naziv akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Za napraviti"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Vrsta akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Activity"
|
||||
msgstr "Aktivnost"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Activity User Type"
|
||||
msgstr "Vrsta korisničke aktivnosti"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids
|
||||
msgid "Add Followers"
|
||||
msgstr "Dodaj sljedbenike"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain
|
||||
msgid "Apply on"
|
||||
msgstr "Primjeni na"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivirano"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation
|
||||
msgid "Automated Action"
|
||||
msgstr "Automatska radnja"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.act_window,name:base_automation.base_automation_act
|
||||
#: model:ir.ui.menu,name:base_automation.menu_base_automation_form
|
||||
msgid "Automated Actions"
|
||||
msgstr "Automatske akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation"
|
||||
msgstr "Automatizacija"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr "Dostupno na webstranicama"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr "Osnovno pravilo: provjeri i izvrši"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr "Temeljeno na izmjeni oblika"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr "Temeljeno na vremenskom uvjetu"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr "Prije ažuriranja domene"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr "Podređene radnje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Kreirao"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Dani/a"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr "Delay after trigger date"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr "Tip kašnjenja"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr "Onemogući akciju"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr "Datum dospijeća u"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Predložak e-maila"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Vanjski ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 akcije je definiran u XML datoteci"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain
|
||||
msgid "If present, this condition must be satisfied before executing the action rule."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "If present, this condition must be satisfied before the update of the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr "Zadnje pokretanje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr "Minute"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Naziv modela"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr "Model za stvaranje zapisa/ažuriranje. Postavi ovo polje samo za određivanje drugačijeg modela od osnovnog modela."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr "Mjeseci"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Bilješka"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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 "Okidač pri izmjeni vrijednosti"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create
|
||||
msgid "On Creation"
|
||||
msgstr "Pri kreiranju"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write
|
||||
msgid "On Creation & Update"
|
||||
msgstr "Pri kreiranju ili ažuriranju"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink
|
||||
msgid "On Deletion"
|
||||
msgstr "Prilikom brisanja"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write
|
||||
msgid "On Update"
|
||||
msgstr "Prilikom ažuriranja"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__help
|
||||
msgid "Optional help text for the users with a description of the target view, such as its usage and purpose."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id
|
||||
msgid "Provide the field used to link the newly created record on the record used by the server action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Odgovoran"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr "Serverske radnje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr "Serverske radnje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr "Postavljanje vrijednosti čini ovu radnju dostupnom u bočnoj traci za navedeni 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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary
|
||||
msgid "Summary"
|
||||
msgstr "Sažetak"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Target Model"
|
||||
msgstr "Ciljani model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name
|
||||
msgid "Target Model Name"
|
||||
msgstr "Naziv ciljanog modela"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
msgstr "Puni URL za pristup serverskoj radnji putem web stranice."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger
|
||||
msgid "Trigger"
|
||||
msgstr "Okidač"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id
|
||||
msgid "Trigger Date"
|
||||
msgstr "Datum okidača"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Trigger Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__state
|
||||
msgid ""
|
||||
"Type of server action. The following values are available:\n"
|
||||
"- 'Execute Python Code': a block of python code that will be executed\n"
|
||||
"- 'Create 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 "Upotreba"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Use 'Specific User' to always assign the same user on the next activity. Use 'Generic User From Record' to specify the field name of the user to choose on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "Use Calendar"
|
||||
msgstr "Koristi kalendar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"Use automated actions to automatically trigger actions for\n"
|
||||
" various screens. Example: a lead created by a specific user may\n"
|
||||
" be automatically set to a specific Sales Team, or an\n"
|
||||
" opportunity which still has status pending after 14 days might\n"
|
||||
" trigger an automatic reminder email."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name
|
||||
msgid "User field name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr "Mapiranje vrijednosti"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr "Website putanja"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr "Url web stranice"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr "Ako nije označeno, pravilo je skriveno i neće se izvršiti."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr "Napišite Python kod koji će akcija izvršiti. Neke varijable su dostupne za upotrebu; pomoć za izraz Python daje se na kartici pomoći."
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1072
i18n/hu.po
Normal file
1072
i18n/hu.po
Normal file
File diff suppressed because it is too large
Load Diff
1137
i18n/id.po
Normal file
1137
i18n/id.po
Normal file
File diff suppressed because it is too large
Load Diff
628
i18n/is.po
Normal file
628
i18n/is.po
Normal file
@ -0,0 +1,628 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__help
|
||||
msgid "Action Description"
|
||||
msgstr "Action Description"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Action Name"
|
||||
msgstr "Heiti aðgerðar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Action To Do"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Action Type"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__active
|
||||
msgid "Active"
|
||||
msgstr "Virkur"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Activity"
|
||||
msgstr "Virkni"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Activity User Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__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 "Sjálfvirkar aðgerðir"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation"
|
||||
msgstr "Automation"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr "Child Actions"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Búið til af"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Stofnað þann"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Dagar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nafn"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Email Template"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "External ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Hours"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni"
|
||||
|
||||
#. 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 "Síðast breytt þann"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. 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 "Mínútur"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Model Name"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Athugasemd"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Optional help text for the users with a description of the target view, such as its usage and purpose."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id
|
||||
msgid "Provide the field used to link the newly created record on the record used by the server action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Ábyrgðaraðili"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Runa"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr "Server Action"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr "Server Actions"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__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 "Samantekt"
|
||||
|
||||
#. 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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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 "Value Mapping"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Viðvörun"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1143
i18n/it.po
Normal file
1143
i18n/it.po
Normal file
File diff suppressed because it is too large
Load Diff
1092
i18n/ja.po
Normal file
1092
i18n/ja.po
Normal file
File diff suppressed because it is too large
Load Diff
631
i18n/ka.po
Normal file
631
i18n/ka.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/kab.po
Normal file
631
i18n/kab.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"Language: kab\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Yerna-t"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Asulay"
|
||||
|
||||
#. 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 "Aleqqem aneggaru di"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Agzum"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
630
i18n/kk.po
Normal file
630
i18n/kk.po
Normal file
@ -0,0 +1,630 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-10-10 09:48+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
633
i18n/km.po
Normal file
633
i18n/km.po
Normal file
@ -0,0 +1,633 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
# Chan Nath <channath@gmail.com>, 2018
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2018-10-08 06:49+0000\n"
|
||||
"Last-Translator: Samkhann Seang <seangsamkhann@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1100
i18n/ko.po
Normal file
1100
i18n/ko.po
Normal file
File diff suppressed because it is too large
Load Diff
628
i18n/lb.po
Normal file
628
i18n/lb.po
Normal file
@ -0,0 +1,628 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
631
i18n/lo.po
Normal file
631
i18n/lo.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1076
i18n/lt.po
Normal file
1076
i18n/lt.po
Normal file
File diff suppressed because it is too large
Load Diff
1070
i18n/lv.po
Normal file
1070
i18n/lv.po
Normal file
File diff suppressed because it is too large
Load Diff
631
i18n/mk.po
Normal file
631
i18n/mk.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
645
i18n/mn.po
Normal file
645
i18n/mn.po
Normal file
@ -0,0 +1,645 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# nurbakhit nurka <nurbakhit@bumanit.mn>, 2022
|
||||
# Bayarkhuu Bataa, 2022
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2022
|
||||
# Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Minj P <pminj322@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
msgstr "Зориулагдсан хянагчийг ашиглан кодын сервер үйлдлийг вэбсайтаас гүйцэтгэх боломжтой. Хаяг нь <base>/website/action/<website_path>. Энэ үйлдлийг хэрэглэгчид хийхийг зөвшөөрөхийн тулд энэ талбарыг True болгоорой. Хэрэв False байвал энэ үйлдлийг вэбсайтаас хийх боломжгүй болно."
|
||||
|
||||
#. 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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr "Вебсайт дээр бэлэн байгаа"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr "Үндсэн ажилбарын дүрэм: шалгаад хэрэгжүүл"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr "Маягтын өөрчлөлт дээр суурилсан"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr "Хугацаат нөхцөлд суурилсан"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr "Домэйныг шинэчлэхээс өмнө"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr "Моделийг холбох"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr "Төрлийг холбох"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr "Дэд үйлдлүүд"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr "Ажиллах дэд серверийн үйлдэлүүд. Хамгийн сүүлийн буцаагдах үйлдэл утга нь бүгдэд хэрэглэгдэх ерөнхий буцах утга болж хэрэглэгдэнэ."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr "Хугацаа дуусах"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr "Төлбөрийн төрөл"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Имэйл загвар"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Гадаад ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Хэрэв XML файл тодорхойлогдсон бол үйлдлийн ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain
|
||||
msgid "If present, this condition must be satisfied before executing the action rule."
|
||||
msgstr "Хэрэв сонгосон бол үйлдлийн дүрмийг ажиллуулахын өмнө энэ нөхцөл нь биелж байх ёстой."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "If present, this condition must be satisfied before the update of the record."
|
||||
msgstr "Байгаа бол энэ нөхцөл нь бичлэгийг шинэчлэхийн биелж байх ёстой."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr "Сүүлд Ажилласан"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr "Минут"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr "Модел"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Моделийн Нэр"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr "Бичлэг үүсгэх / шинэчлэхэд зориулагдсан модель. Энэ талбарыг зөвхөн суурь моделиэс өөр модель тодорхойлоход бөглөнө үү."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr "Серверийн үйлдэл ажилладаг модел."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr "Сар"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Тэмдэглэл"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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 "Python код"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Хариуцагч"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr "\"%(trigger_value)s\" %(trigger_label)s-ыг %(state_value)s үйлдлийн төрөлд л ашиглана."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
msgstr "Вебсайтан дамжин хандах сервер үйлдлийн бүтэн URL."
|
||||
|
||||
#. 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 ""
|
||||
"Дэлгэцүүдэд зориулсан үйлдлүүдийг автоматаар өдөөхийн\n"
|
||||
"тулд автомат үйлдлийг ашигладаг. Жишээ нь тодорхой нэг\n"
|
||||
"хэрэглэгчээс үүссэн сэжмийн Борлуулалтын багийг тусгайлан\n"
|
||||
"сонгох үйлдлийг автомат болгох, эсвэл төлөв нь хүлээгдэж \n"
|
||||
"байгаа нэг боломжийн хувьд 14 хоногийн дараа сануулга \n"
|
||||
"имэйлийг автоматаар илгээх."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name
|
||||
msgid "User field name"
|
||||
msgstr "Хэрэглэгч талбарын нэр"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr "Утга харгалзуулалт"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Анхааруулга"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr "Вебсайтын зам"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr "Вебсайтын Url"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr "Өдөр дээр суурилсан хугацааны нөхцлийг тооцоолоход ажиллах өдөр дээр суурилсан цаглабарыг ашиглах боломжтой."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr "Олон үйлдэл хийх үед ачааллах дараалал нь дараалал дээр суурилна. Бага тоотой нь өндөр ач холбогдолтой гэсэн үг."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr "Тэмдэглээгүй бол дүрэм харагдахгүй бөгөөд ажиллахгүй."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr "Үйлдлийг ачааллах Python кодыг бичнэ үү. Хэрэглэх боломжтой зарим хувьсагчуудыг харж болно, python илэрхийллийн тайлбар нь тусламжийн хавтсанд байгаа."
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
634
i18n/nb.po
Normal file
634
i18n/nb.po
Normal file
@ -0,0 +1,634 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Aleksander, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
msgstr "En kodet tjenerhandling kan kjøres fra nettsiden ved å bruke en dedikert kontroller. Adressen er <base>/website/action/<website_path>. Sett dette feltet til Sann for å tillate brukere å kjøre denne handlingen. Hvis satt til Usann, kan handlingen ikke kjøres fra nettsiden."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__help
|
||||
msgid "Action Description"
|
||||
msgstr "Handlingsbeskrivelse"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Action Name"
|
||||
msgstr "Handlingsnavn"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Handling å utføre"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Handlingstype"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Activity"
|
||||
msgstr "Aktivitet"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Activity User Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids
|
||||
msgid "Add Followers"
|
||||
msgstr "Legg til følgere"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain
|
||||
msgid "Apply on"
|
||||
msgstr "Bruk på"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search
|
||||
msgid "Archived"
|
||||
msgstr "Arkivert"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation
|
||||
msgid "Automated Action"
|
||||
msgstr "Automatisert handling"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.act_window,name:base_automation.base_automation_act
|
||||
#: model:ir.ui.menu,name:base_automation.menu_base_automation_form
|
||||
msgid "Automated Actions"
|
||||
msgstr "Automatiserte handlinger"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation"
|
||||
msgstr "Automatisering"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr "Tilgjengelig på nettstedet"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Opprettet av"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Dager"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr "Forsinkelse etter triggerdato"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr "forsinkelse typen"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "E-postmal"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Ekstern ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Grupper"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour
|
||||
msgid "Hours"
|
||||
msgstr "Timer"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id
|
||||
msgid "ID of the action if defined in a XML file"
|
||||
msgstr "Handlings-ID er definert i en XML-fil"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain
|
||||
msgid "If present, this condition must be satisfied before executing the action rule."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "If present, this condition must be satisfied before the update of the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr "Sist kjørt"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr "Minutter"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Modellnavn"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr "Modell handlinger fra server kjører på."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr "Måneder"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Notat"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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 "Ved opprettelse"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write
|
||||
msgid "On Creation & Update"
|
||||
msgstr "Ved opprettelse og oppdatering"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink
|
||||
msgid "On Deletion"
|
||||
msgstr "Ved sletting"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write
|
||||
msgid "On Update"
|
||||
msgstr "Ved oppdatering"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__help
|
||||
msgid "Optional help text for the users with a description of the target view, such as its usage and purpose."
|
||||
msgstr "Opsjonell hjelpetekst for brukerene med beskrivelse av målvisningen, slik som bruken av visningen."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id
|
||||
msgid "Provide the field used to link the newly created record on the record used by the server action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python-kode"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Ansvarlig"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
msgstr "SMS-mal"
|
||||
|
||||
#. 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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvens"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr "Handling på server"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr "Handlinger på server"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__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 "Oppsummering"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Target Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name
|
||||
msgid "Target Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
msgstr "Full URL for å få tilgang til server-handlinger gjennom nettstedet."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger
|
||||
msgid "Trigger"
|
||||
msgstr "Utløser"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id
|
||||
msgid "Trigger Date"
|
||||
msgstr "Triggerdato"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Trigger Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__state
|
||||
msgid ""
|
||||
"Type of server action. The following values are available:\n"
|
||||
"- 'Execute Python Code': a block of python code that will be executed\n"
|
||||
"- 'Create 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 "Bruk"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Use 'Specific User' to always assign the same user on the next activity. Use 'Generic User From Record' to specify the field name of the user to choose on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "Use Calendar"
|
||||
msgstr "Bruk kalender"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"Use automated actions to automatically trigger actions for\n"
|
||||
" various screens. Example: a lead created by a specific user may\n"
|
||||
" be automatically set to a specific Sales Team, or an\n"
|
||||
" opportunity which still has status pending after 14 days might\n"
|
||||
" trigger an automatic reminder email."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name
|
||||
msgid "User field name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr "Verdikobling"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr "Nettsted-filbane"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr "Nettsted-URL"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
628
i18n/ne.po
Normal file
628
i18n/ne.po
Normal file
@ -0,0 +1,628 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1142
i18n/nl.po
Normal file
1142
i18n/nl.po
Normal file
File diff suppressed because it is too large
Load Diff
1079
i18n/pl.po
Normal file
1079
i18n/pl.po
Normal file
File diff suppressed because it is too large
Load Diff
1066
i18n/pt.po
Normal file
1066
i18n/pt.po
Normal file
File diff suppressed because it is too large
Load Diff
1141
i18n/pt_BR.po
Normal file
1141
i18n/pt_BR.po
Normal file
File diff suppressed because it is too large
Load Diff
671
i18n/ro.po
Normal file
671
i18n/ro.po
Normal file
@ -0,0 +1,671 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Cozmin Candea <office@terrabit.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
msgstr "O acțiune de server de cod poate fi executată de pe site-ul web, folosind un controler dedicat. Adresa este <base>/website/action/<website_path>Setați acest câmp ca Adevărat pentru a permite utilizatorilor să ruleze această acțiune. Dacă este setat pe Fals, acțiunea nu poate fi rulată pe site-ul web."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__help
|
||||
msgid "Action Description"
|
||||
msgstr "Descriere acțiune"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__name
|
||||
msgid "Action Name"
|
||||
msgstr "Nume acțiune"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Acțiune de efectuat"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Tipul acțiunii"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__active
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_type_id
|
||||
msgid "Activity"
|
||||
msgstr "Activitate"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Activity User Type"
|
||||
msgstr "Activitate Tip Utilizator"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__partner_ids
|
||||
msgid "Add Followers"
|
||||
msgstr "Adaugă interesați"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_domain
|
||||
msgid "Apply on"
|
||||
msgstr " Aplică pe "
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivat"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__ir_actions_server__usage__base_automation
|
||||
msgid "Automated Action"
|
||||
msgstr "Acțiune automată "
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.act_window,name:base_automation.base_automation_act
|
||||
#: model:ir.ui.menu,name:base_automation.menu_base_automation_form
|
||||
msgid "Automated Actions"
|
||||
msgstr "Acțiuni Automate"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation"
|
||||
msgstr "Automatizare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr "Disponibil pe Website"
|
||||
|
||||
#. 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 "Regulă de bază pentru acțiuni: verifică și execută"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr "Bazat pe modificarea formularului"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr "Bazat pe o condiție de timp"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr "Înainte de actualizare domeniu"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr "Model legare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr "Tip Legare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr "Tip Vizualizare Legare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr "Acțiuni subordonate"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr "Acțiuni server subordonate care vor fi executate. Notați că ultima valoare returnată va fi folosită ca valoare globală de returnare."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
msgstr ""
|
||||
"Alegeți metoda de trimitere a SMS-urilor:\n"
|
||||
"SMS: SMS în masă\n"
|
||||
"Postează ca mesaj: înregistrează pe document\n"
|
||||
"Postează ca notă: SMS în masă cu arhive"
|
||||
|
||||
#. 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 ""
|
||||
"Alegeți metoda de trimitere a e-mail-ului:\n"
|
||||
"EMail: trimite direct e-mail-uri\n"
|
||||
"Postează ca mesaj: postează pe document și notifică urmăritorii\n"
|
||||
"Postează ca Notă: înregistrează o notă pe document"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Zile"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
"Întârziere după data declanșării.\n"
|
||||
" Puteți pune un număr negativ dacă aveți nevoie de întârziere înainte de\n"
|
||||
" data declanșării, ca de exemplu trimiterea unui memento 15 minute înainte de o întâlnire."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr "Întârziere după data declanșării"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr "Tip întârziere"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr "Dezactivează Acțiunea"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
"Dezactivarea acestei acțiuni automate vă va permite să continuați fluxul de lucru\n"
|
||||
" dar orice date create după aceasta pot fi corupte,\n"
|
||||
" deoarece dezactivați o personalizare care poate seta\n"
|
||||
" câmpuri importante și/sau obligatorii."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr "Data scadenței în"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr "Tip scadență"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr "Editează acțiunea"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Șablon email"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Tipurile de acțiuni Email, urmăritori sau activități nu pot fi utilizate la ștergerea înregistrărilor."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__xml_id
|
||||
msgid "External ID"
|
||||
msgstr "ID extern"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr "Câmpuri care declanșează schimbarea."
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Acțiunile de modificare bazate pe formular pot fi utilizate doar cu tipul de acțiune cod."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__groups_id
|
||||
msgid "Groups"
|
||||
msgstr "Grupuri"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__hour
|
||||
msgid "Hours"
|
||||
msgstr "Ore"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__xml_id
|
||||
msgid "ID of the action if defined in a XML file"
|
||||
msgstr "ID-ul acțiunii, dacă este definit într-un fișier XML"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain
|
||||
msgid "If present, this condition must be satisfied before executing the action rule."
|
||||
msgstr "Dacă este prezent, această condiție trebuie să fie îndeplinită înainte de a executa regula acțiunii."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "If present, this condition must be satisfied before the update of the record."
|
||||
msgstr "Dacă este prezent, această condiție trebuie să fie îndeplinită înainte de actualizarea înregistrării."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr "Ultima executare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr "Minima întârziere Msg"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr "Câmp de legătură"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr "Minute"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr "Nume model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr "Model pentru crearea / actualizarea înregistrărilor. Setați acest câmp doar pentru a specifica un model diferit de modelul de bază."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr "Model pe care se execută acțiunea serverului."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr "Luni"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr "Notă"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be triggered up to %d minutes after its schedule."
|
||||
msgstr "Rețineți că această acțiune poate fi declanșată până la %d minute după programare."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "On Change Fields Trigger"
|
||||
msgstr "Declanșator câmpuri On Change"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create
|
||||
msgid "On Creation"
|
||||
msgstr "La Creare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_create_or_write
|
||||
msgid "On Creation & Update"
|
||||
msgstr "La Creeare & Actualizare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_unlink
|
||||
msgid "On Deletion"
|
||||
msgstr "La ștergere"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_write
|
||||
msgid "On Update"
|
||||
msgstr "La Actualizare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__help
|
||||
msgid "Optional help text for the users with a description of the target view, such as its usage and purpose."
|
||||
msgstr "Text opțional de ajutor pentru utilizatori cu o descriere a vizualizării țintă, cum ar fi utilizarea și scopul."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__link_field_id
|
||||
msgid "Provide the field used to link the newly created record on the record used by the server action."
|
||||
msgstr "Furnizați câmpul utilizat pentru a conecta înregistrarea recent creată la înregistrarea utilizată de acțiunea serverului."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__code
|
||||
msgid "Python Code"
|
||||
msgstr "Cod Python"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Responsabil"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
msgstr "Șablon SMS"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__mail_post_method
|
||||
msgid "Send as"
|
||||
msgstr "Trimite ca"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr "Trimite ca (SMS)"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secvență"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,name:base_automation.model_ir_actions_server
|
||||
msgid "Server Action"
|
||||
msgstr "Acțiune server"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__action_server_id
|
||||
msgid "Server Actions"
|
||||
msgstr "Acțiuni server"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr "Setarea unei valori face această acțiune disponibilă în bara laterală pentru modelul dat."
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr "Configurați o nouă automatizare automată"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__mail_post_autofollow
|
||||
msgid "Subscribe Recipients"
|
||||
msgstr "Abonați destinatarii"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_summary
|
||||
msgid "Summary"
|
||||
msgstr "Sumar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Target Model"
|
||||
msgstr "Modelul țintă"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__crud_model_name
|
||||
msgid "Target Model Name"
|
||||
msgstr "Nume model țintă"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr "\"%(trigger_value)s\" %(trigger_label)s poate fi utilizat numai cu \"%(state_value)s\" tipul de acțiune"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr "Acțiunea va fi declanșată dacă și numai dacă unul dintre aceste câmpuri este actualizat. Dacă este gol, toate câmpurile sunt urmărite."
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
"Eroarea a apărut în timpul execuției acțiunii automate\n"
|
||||
" \""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
msgstr "URL-ul complet pentru a accesa acțiunea serverului prin intermediul site-ului web"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger
|
||||
msgid "Trigger"
|
||||
msgstr "Declansati"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_id
|
||||
msgid "Trigger Date"
|
||||
msgstr "Data declansarii"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trigger_field_ids
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form
|
||||
msgid "Trigger Fields"
|
||||
msgstr "Câmpuri de declanșare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__state
|
||||
msgid ""
|
||||
"Type of server action. The following values are available:\n"
|
||||
"- 'Execute Python Code': a block of python code that will be executed\n"
|
||||
"- 'Create 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 ""
|
||||
"Tipul de acțiune server. Valorile disponibile sunt:\n"
|
||||
"- 'Execută cod Python': un bloc de cod Python care va fi executat\n"
|
||||
"- 'Creează un nou înregistrare': creează o nouă înregistrare cu valori noi\n"
|
||||
"- 'Actualizează o înregistrare': actualizează valorile unei înregistrări\n"
|
||||
"- 'Execută mai multe acțiuni': definește o acțiune care declanșează mai multe alte acțiuni server\n"
|
||||
"- 'Trimite email': postați un mesaj, o notă sau trimiteți un email (Discuții)\n"
|
||||
"- 'Adaugă urmăritori': adaugă urmăritori unei înregistrări (Discuții)\n"
|
||||
"- 'Creează următoarea activitate': creează o activitate (Discuții)\n"
|
||||
"- 'Trimite mesaj text SMS': trimite SMS, înregistrează-le pe documente (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 "Utilizare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Use 'Specific User' to always assign the same user on the next activity. Use 'Generic User From Record' to specify the field name of the user to choose on the record."
|
||||
msgstr "Utilizați „Utilizator specific” pentru a aloca întotdeauna același utilizator la următoarea activitate. Utilizați „Utilizator generic din înregistrare” pentru a specifica numele câmpului utilizatorului pe care îl alegeți în înregistrare."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "Use Calendar"
|
||||
msgstr "Utilizează Calendar"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"Use automated actions to automatically trigger actions for\n"
|
||||
" various screens. Example: a lead created by a specific user may\n"
|
||||
" be automatically set to a specific Sales Team, or an\n"
|
||||
" opportunity which still has status pending after 14 days might\n"
|
||||
" trigger an automatic reminder email."
|
||||
msgstr ""
|
||||
"Utilizați acțiunile automate pentru a declanșa automat acțiuni pentru\n"
|
||||
" diferite ecrane. De exemplu: un lead creat de un utilizator specific poate\n"
|
||||
" fi setat automat la o echipă de vânzări specifică, sau o\n"
|
||||
" oportunitate care are încă starea în așteptare după 14 zile ar putea\n"
|
||||
" declanșa un e-mail de reamintire automat."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name
|
||||
msgid "User field name"
|
||||
msgstr "Numele câmpului de utilizator"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr "Valoare Mapare"
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Atenție"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr "Calea Site-ului web"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr "URL Site-ului web"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr "La calcularea o condiție pe baza de date calendaristice, este posibil să se utilizeze un calendar pentru a calcula data pe baza de zile lucrătoare."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr "Atunci când aveți de-a face cu mai multe acțiuni, ordinea de execuție se bazează pe secvență. Număr redus înseamnă prioritate mare"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
"Când ar trebui să fie declanșată condiția.\n"
|
||||
" Dacă este prezent, va fi verificat de programator. Dacă este gol, va fi verificat la creare și actualizare."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr "Atunci cand nu este selectata, regula este ascunsa si nu va fi executata."
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr "Scrieți codul Python pe care îl va executa acțiunea. Unele variabile sunt disponibile pentru utilizare; ajutor despre expresia python este oferit în fila ajutor."
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr "Puteți solicita unui administrator să dezactiveze sau să corecteze această acțiune automată."
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr "Puteți dezactiva această acțiune automată sau să o editați pentru a rezolva problema."
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Nu puteți trimite un e-mail, adăugați urmăritori sau creați o activitate pentru un înregistrare ștearsă. Nu funcționează."
|
1147
i18n/ru.po
Normal file
1147
i18n/ru.po
Normal file
File diff suppressed because it is too large
Load Diff
1067
i18n/sk.po
Normal file
1067
i18n/sk.po
Normal file
File diff suppressed because it is too large
Load Diff
1074
i18n/sl.po
Normal file
1074
i18n/sl.po
Normal file
File diff suppressed because it is too large
Load Diff
631
i18n/sq.po
Normal file
631
i18n/sq.po
Normal file
@ -0,0 +1,631 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"Language: sq\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_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Krijuar nga"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Krijuar me"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Emri i paraqitur"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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 "Modifikimi i fundit në"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifikuar per here te fundit nga"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifikuar per here te fundit me"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__crud_model_id
|
||||
msgid "Model for record creation / update. Set this field only to specify a different model than the base model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__model_id
|
||||
msgid "Model on which the server action runs."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__month
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekuencë"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1079
i18n/sr.po
Normal file
1079
i18n/sr.po
Normal file
File diff suppressed because it is too large
Load Diff
634
i18n/sr@latin.po
Normal file
634
i18n/sr@latin.po
Normal file
@ -0,0 +1,634 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_automation
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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 "Naziv akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__state
|
||||
msgid "Action To Do"
|
||||
msgstr "Za Uraditi"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__type
|
||||
msgid "Action Type"
|
||||
msgstr "Tip Akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. 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 "Automatske Akcije"
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_tree
|
||||
msgid "Automation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 "Kreirao"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr "Dani"
|
||||
|
||||
#. 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
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr "Šablon poruka"
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "Externi ID"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__on_change_field_ids
|
||||
msgid "Fields that trigger the onchange."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 "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 ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_domain
|
||||
msgid "If present, this condition must be satisfied before executing the action rule."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "If present, this condition must be satisfied before the update of the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__last_run
|
||||
msgid "Last Run"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__least_delay_msg
|
||||
msgid "Least Delay Msg"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__link_field_id
|
||||
msgid "Link Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__minutes
|
||||
msgid "Minutes"
|
||||
msgstr "Minute"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_id
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__model_name
|
||||
msgid "Model Name"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Meseci"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Note that this action can be 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 "Python kod"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_id
|
||||
msgid "Responsible"
|
||||
msgstr "Odgovoran"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Prioritet"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model,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 "Akcije Servera"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Setting a value makes this action available in the sidebar for the given model."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid "Setup a new automated automation"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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 "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 ""
|
||||
|
||||
#. 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 "Upotreba"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__activity_user_type
|
||||
msgid "Use 'Specific User' to always assign the same user on the next activity. Use 'Generic User From Record' to specify the field name of the user to choose on the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "Use Calendar"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model_terms:ir.actions.act_window,help:base_automation.base_automation_act
|
||||
msgid ""
|
||||
"Use automated actions to automatically trigger actions for\n"
|
||||
" various screens. Example: a lead created by a specific user may\n"
|
||||
" be automatically set to a specific Sales Team, or an\n"
|
||||
" opportunity which still has status pending after 14 days might\n"
|
||||
" trigger an automatic reminder email."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_user_field_name
|
||||
msgid "User field name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__fields_lines
|
||||
msgid "Value Mapping"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1083
i18n/sv.po
Normal file
1083
i18n/sv.po
Normal file
File diff suppressed because it is too large
Load Diff
632
i18n/ta.po
Normal file
632
i18n/ta.po
Normal file
@ -0,0 +1,632 @@
|
||||
# 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: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2016-06-01 13:21+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n"
|
||||
"Language: ta\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"\n"
|
||||
" (ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_published
|
||||
msgid "A code server action can be executed from the website, using a dedicated controller. The address is <base>/website/action/<website_path>. Set this field as True to allow users to run this action. If it is set to False the action cannot be run through the website."
|
||||
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.model.fields,field_description:base_automation.field_base_automation__website_published
|
||||
msgid "Available on the Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.actions.server,name:base_automation.ir_cron_data_base_automation_check_ir_actions_server
|
||||
#: model:ir.cron,cron_name:base_automation.ir_cron_data_base_automation_check
|
||||
#: model:ir.cron,name:base_automation.ir_cron_data_base_automation_check
|
||||
msgid "Base Action Rule: check and execute"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_change
|
||||
msgid "Based on Form Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trigger__on_time
|
||||
msgid "Based on Timed Condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__filter_pre_domain
|
||||
msgid "Before Update Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_model_id
|
||||
msgid "Binding Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_type
|
||||
msgid "Binding Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__binding_view_types
|
||||
msgid "Binding View Types"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__child_ids
|
||||
msgid "Child Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__child_ids
|
||||
msgid "Child server actions that will be executed. Note that the last return returned action value will be used as global return value."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sms_method
|
||||
msgid ""
|
||||
"Choose method for SMS sending:\n"
|
||||
"SMS: mass SMS\n"
|
||||
"Post as Message: log on document\n"
|
||||
"Post as Note: mass SMS with archives"
|
||||
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 ""
|
||||
"உருவாக்கப்பட்ட \n"
|
||||
"தேதி"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields.selection,name:base_automation.selection__base_automation__trg_date_range_type__day
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_range
|
||||
msgid ""
|
||||
"Delay after the trigger date.\n"
|
||||
" You can put a negative number if you need a delay before the\n"
|
||||
" trigger date, like sending a reminder 15 minutes before a meeting."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range
|
||||
msgid "Delay after trigger date"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__trg_date_range_type
|
||||
msgid "Delay type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Disable Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Disabling this automated action will enable you to continue your workflow\n"
|
||||
" but any data created after this could potentially be corrupted,\n"
|
||||
" as you are effectively disabling a customization that may set\n"
|
||||
" important and/or required fields."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "காட்சி பெயர்"
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range
|
||||
msgid "Due Date In"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__activity_date_deadline_range_type
|
||||
msgid "Due type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "Edit action"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__template_id
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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__sms_template_id
|
||||
msgid "SMS Template"
|
||||
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__sms_method
|
||||
msgid "Send as (SMS)"
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "The \"%(trigger_value)s\" %(trigger_label)s can only be used with the \"%(state_value)s\" action type"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trigger_field_ids
|
||||
msgid "The action will be triggered if and only if one of these fields is updated. If empty, all fields are watched."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The error occurred during the execution of the automated action\n"
|
||||
" \""
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__website_url
|
||||
msgid "The full URL to access the server action through the website."
|
||||
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
|
||||
#: code:addons/base_automation/models/base_automation.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_path
|
||||
msgid "Website Path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,field_description:base_automation.field_base_automation__website_url
|
||||
msgid "Website Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_calendar_id
|
||||
msgid "When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__sequence
|
||||
msgid "When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__trg_date_id
|
||||
msgid ""
|
||||
"When should the condition be triggered.\n"
|
||||
" If present, will be checked by the scheduler. If empty, will be checked at creation and update."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__active
|
||||
msgid "When unchecked, the rule is hidden and will not be executed."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: model:ir.model.fields,help:base_automation.field_base_automation__code
|
||||
msgid "Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can ask an administrator to disable or correct this automated action."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#. openerp-web
|
||||
#: code:addons/base_automation/static/src/xml/base_automation_error_dialog.xml:0
|
||||
#, python-format
|
||||
msgid "You can disable this automated action or edit it to solve the issue."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_automation
|
||||
#: 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 ""
|
1126
i18n/th.po
Normal file
1126
i18n/th.po
Normal file
File diff suppressed because it is too large
Load Diff
1087
i18n/tr.po
Normal file
1087
i18n/tr.po
Normal file
File diff suppressed because it is too large
Load Diff
1137
i18n/uk.po
Normal file
1137
i18n/uk.po
Normal file
File diff suppressed because it is too large
Load Diff
1135
i18n/vi.po
Normal file
1135
i18n/vi.po
Normal file
File diff suppressed because it is too large
Load Diff
1091
i18n/zh_CN.po
Normal file
1091
i18n/zh_CN.po
Normal file
File diff suppressed because it is too large
Load Diff
1090
i18n/zh_TW.po
Normal file
1090
i18n/zh_TW.po
Normal file
File diff suppressed because it is too large
Load Diff
5
models/__init__.py
Normal file
5
models/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import base_automation
|
||||
from . import ir_actions_server
|
944
models/base_automation.py
Normal file
944
models/base_automation.py
Normal file
@ -0,0 +1,944 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import datetime
|
||||
import logging
|
||||
import traceback
|
||||
from collections import defaultdict
|
||||
from uuid import uuid4
|
||||
|
||||
from dateutil.relativedelta import relativedelta
|
||||
|
||||
from odoo import _, api, exceptions, fields, models
|
||||
from odoo.tools import DEFAULT_SERVER_DATETIME_FORMAT
|
||||
from odoo.tools import safe_eval
|
||||
from odoo.http import request
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
DATE_RANGE_FUNCTION = {
|
||||
'minutes': lambda interval: relativedelta(minutes=interval),
|
||||
'hour': lambda interval: relativedelta(hours=interval),
|
||||
'day': lambda interval: relativedelta(days=interval),
|
||||
'month': lambda interval: relativedelta(months=interval),
|
||||
False: lambda interval: relativedelta(0),
|
||||
}
|
||||
|
||||
DATE_RANGE_FACTOR = {
|
||||
'minutes': 1,
|
||||
'hour': 60,
|
||||
'day': 24 * 60,
|
||||
'month': 30 * 24 * 60,
|
||||
False: 0,
|
||||
}
|
||||
|
||||
CREATE_TRIGGERS = [
|
||||
'on_create',
|
||||
|
||||
'on_create_or_write',
|
||||
'on_priority_set',
|
||||
'on_stage_set',
|
||||
'on_state_set',
|
||||
'on_tag_set',
|
||||
'on_user_set',
|
||||
]
|
||||
|
||||
WRITE_TRIGGERS = [
|
||||
'on_write',
|
||||
'on_archive',
|
||||
'on_unarchive',
|
||||
|
||||
'on_create_or_write',
|
||||
'on_priority_set',
|
||||
'on_stage_set',
|
||||
'on_state_set',
|
||||
'on_tag_set',
|
||||
'on_user_set',
|
||||
]
|
||||
|
||||
MAIL_TRIGGERS = ("on_message_received", "on_message_sent")
|
||||
|
||||
CREATE_WRITE_SET = set(CREATE_TRIGGERS + WRITE_TRIGGERS)
|
||||
|
||||
TIME_TRIGGERS = [
|
||||
'on_time',
|
||||
'on_time_created',
|
||||
'on_time_updated',
|
||||
]
|
||||
|
||||
def get_webhook_request_payload():
|
||||
if not request:
|
||||
return None
|
||||
try:
|
||||
payload = request.get_json_data()
|
||||
except ValueError:
|
||||
payload = {**request.httprequest.args}
|
||||
return payload
|
||||
|
||||
|
||||
class BaseAutomation(models.Model):
|
||||
_name = 'base.automation'
|
||||
_description = 'Automation Rule'
|
||||
|
||||
name = fields.Char(string="Automation Rule Name", required=True, translate=True)
|
||||
description = fields.Html(string="Description")
|
||||
model_id = fields.Many2one(
|
||||
"ir.model", string="Model", required=True, ondelete="cascade", help="Model on which the automation rule runs."
|
||||
)
|
||||
model_name = fields.Char(related="model_id.model", string="Model Name", readonly=True, inverse="_inverse_model_name")
|
||||
model_is_mail_thread = fields.Boolean(related="model_id.is_mail_thread")
|
||||
action_server_ids = fields.One2many("ir.actions.server", "base_automation_id",
|
||||
context={'default_usage': 'base_automation'},
|
||||
string="Actions",
|
||||
compute="_compute_action_server_ids",
|
||||
store=True,
|
||||
readonly=False,
|
||||
)
|
||||
url = fields.Char(compute='_compute_url')
|
||||
webhook_uuid = fields.Char(string="Webhook UUID", readonly=True, copy=False, default=lambda self: str(uuid4()))
|
||||
record_getter = fields.Char(default="model.env[payload.get('_model')].browse(int(payload.get('_id')))",
|
||||
help="This code will be run to find on which record the automation rule should be run.")
|
||||
log_webhook_calls = fields.Boolean(string="Log Calls", default=False)
|
||||
active = fields.Boolean(default=True, help="When unchecked, the rule is hidden and will not be executed.")
|
||||
|
||||
@api.constrains("trigger", "model_id")
|
||||
def _check_trigger(self):
|
||||
for automation in self:
|
||||
if automation.trigger in MAIL_TRIGGERS and not automation.model_id.is_mail_thread:
|
||||
raise exceptions.ValidationError(_("Mail event can not be configured on model %s. Only models with discussion feature can be used.", automation.model_id.name))
|
||||
|
||||
trigger = fields.Selection(
|
||||
[
|
||||
('on_stage_set', "Stage is set to"),
|
||||
('on_user_set', "User is set"),
|
||||
('on_tag_set', "Tag is added"),
|
||||
('on_state_set', "State is set to"),
|
||||
('on_priority_set', "Priority is set to"),
|
||||
('on_archive', "On archived"),
|
||||
('on_unarchive', "On unarchived"),
|
||||
('on_create_or_write', "On save"),
|
||||
('on_create', "On creation"), # deprecated, use 'on_create_or_write' instead
|
||||
('on_write', "On update"), # deprecated, use 'on_create_or_write' instead
|
||||
|
||||
('on_unlink', "On deletion"),
|
||||
('on_change', "On UI change"),
|
||||
|
||||
('on_time', "Based on date field"),
|
||||
('on_time_created', "After creation"),
|
||||
('on_time_updated', "After last update"),
|
||||
|
||||
("on_message_received", "On incoming message"),
|
||||
("on_message_sent", "On outgoing message"),
|
||||
|
||||
('on_webhook', "On webhook"),
|
||||
], string='Trigger',
|
||||
compute='_compute_trigger_and_trigger_field_ids', readonly=False, store=True, required=True)
|
||||
trg_selection_field_id = fields.Many2one(
|
||||
'ir.model.fields.selection',
|
||||
string='Trigger Field',
|
||||
domain="[('field_id', 'in', trigger_field_ids)]",
|
||||
compute='_compute_trg_selection_field_id',
|
||||
readonly=False, store=True,
|
||||
help="Some triggers need a reference to a selection field. This field is used to store it.")
|
||||
trg_field_ref_model_name = fields.Char(
|
||||
string='Trigger Field Model',
|
||||
compute='_compute_trg_field_ref__model_and_display_names')
|
||||
trg_field_ref = fields.Many2oneReference(
|
||||
model_field='trg_field_ref_model_name',
|
||||
compute='_compute_trg_field_ref',
|
||||
string='Trigger Reference',
|
||||
readonly=False,
|
||||
store=True,
|
||||
help="Some triggers need a reference to another field. This field is used to store it.")
|
||||
trg_field_ref_display_name = fields.Char(
|
||||
string='Trigger Reference Display Name',
|
||||
compute='_compute_trg_field_ref__model_and_display_names')
|
||||
trg_date_id = fields.Many2one(
|
||||
'ir.model.fields', string='Trigger Date',
|
||||
compute='_compute_trg_date_id',
|
||||
readonly=False, store=True,
|
||||
domain="[('model_id', '=', model_id), ('ttype', 'in', ('date', 'datetime'))]",
|
||||
help="""When should the condition be triggered.
|
||||
If present, will be checked by the scheduler. If empty, will be checked at creation and update.""")
|
||||
trg_date_range = fields.Integer(
|
||||
string='Delay after trigger date',
|
||||
compute='_compute_trg_date_range_data',
|
||||
readonly=False, store=True,
|
||||
help="Delay after the trigger date. "
|
||||
"You can put a negative number if you need a delay before the "
|
||||
"trigger date, like sending a reminder 15 minutes before a meeting.")
|
||||
trg_date_range_type = fields.Selection(
|
||||
[('minutes', 'Minutes'), ('hour', 'Hours'), ('day', 'Days'), ('month', 'Months')],
|
||||
string='Delay type',
|
||||
compute='_compute_trg_date_range_data',
|
||||
readonly=False, store=True)
|
||||
trg_date_calendar_id = fields.Many2one(
|
||||
"resource.calendar", string='Use Calendar',
|
||||
compute='_compute_trg_date_calendar_id',
|
||||
readonly=False, store=True,
|
||||
help="When calculating a day-based timed condition, it is possible"
|
||||
"to use a calendar to compute the date based on working days.")
|
||||
filter_pre_domain = fields.Char(
|
||||
string='Before Update Domain',
|
||||
compute='_compute_filter_pre_domain',
|
||||
readonly=False, store=True,
|
||||
help="If present, this condition must be satisfied before the update of the record.")
|
||||
filter_domain = fields.Char(
|
||||
string='Apply on',
|
||||
help="If present, this condition must be satisfied before executing the automation rule.",
|
||||
compute='_compute_filter_domain',
|
||||
readonly=False, store=True
|
||||
)
|
||||
last_run = fields.Datetime(readonly=True, copy=False)
|
||||
on_change_field_ids = fields.Many2many(
|
||||
"ir.model.fields",
|
||||
relation="base_automation_onchange_fields_rel",
|
||||
compute='_compute_on_change_field_ids',
|
||||
readonly=False, store=True,
|
||||
string="On Change Fields Trigger",
|
||||
help="Fields that trigger the onchange.",
|
||||
)
|
||||
trigger_field_ids = fields.Many2many(
|
||||
'ir.model.fields', string='Trigger Fields',
|
||||
compute='_compute_trigger_and_trigger_field_ids', readonly=False, store=True,
|
||||
help="The automation rule will be triggered if and only if one of these fields is updated."
|
||||
"If empty, all fields are watched.")
|
||||
least_delay_msg = fields.Char(compute='_compute_least_delay_msg')
|
||||
|
||||
# which fields have an impact on the registry and the cron
|
||||
CRITICAL_FIELDS = ['model_id', 'active', 'trigger', 'on_change_field_ids']
|
||||
RANGE_FIELDS = ['trg_date_range', 'trg_date_range_type']
|
||||
|
||||
@api.constrains('model_id', 'action_server_ids')
|
||||
def _check_action_server_model(self):
|
||||
for rule in self:
|
||||
failing_actions = rule.action_server_ids.filtered(
|
||||
lambda action: action.model_id != rule.model_id
|
||||
)
|
||||
if failing_actions:
|
||||
raise exceptions.ValidationError(
|
||||
_('Target model of actions %(action_names)s are different from rule model.',
|
||||
action_names=', '.join(failing_actions.mapped('name'))
|
||||
)
|
||||
)
|
||||
@api.depends("trigger", "webhook_uuid")
|
||||
def _compute_url(self):
|
||||
for automation in self:
|
||||
if automation.trigger != "on_webhook":
|
||||
automation.url = ""
|
||||
else:
|
||||
automation.url = "%s/web/hook/%s" % (automation.get_base_url(), automation.webhook_uuid)
|
||||
|
||||
def _inverse_model_name(self):
|
||||
for rec in self:
|
||||
rec.model_id = self.env["ir.model"]._get(rec.model_name)
|
||||
|
||||
@api.constrains('trigger', 'action_server_ids')
|
||||
def _check_trigger_state(self):
|
||||
for record in self:
|
||||
no_code_actions = record.action_server_ids.filtered(lambda a: a.state != 'code')
|
||||
if record.trigger == 'on_change' and no_code_actions:
|
||||
raise exceptions.ValidationError(
|
||||
_('"On live update" automation rules can only be used with "Execute Python Code" action type.')
|
||||
)
|
||||
mail_actions = record.action_server_ids.filtered(
|
||||
lambda a: a.state in ['mail_post', 'followers', 'next_activity']
|
||||
)
|
||||
if record.trigger == 'on_unlink' and mail_actions:
|
||||
raise exceptions.ValidationError(
|
||||
_('Email, follower or activity action types cannot be used when deleting records, '
|
||||
'as there are no more records to apply these changes to!')
|
||||
)
|
||||
|
||||
@api.depends('model_id')
|
||||
def _compute_action_server_ids(self):
|
||||
""" When changing / setting model, remove actions that are not targeting
|
||||
the same model anymore. """
|
||||
for rule in self.filtered('model_id'):
|
||||
actions_to_remove = rule.action_server_ids.filtered(
|
||||
lambda action: action.model_id != rule.model_id
|
||||
)
|
||||
if actions_to_remove:
|
||||
rule.action_server_ids = [(3, action.id) for action in actions_to_remove]
|
||||
|
||||
@api.depends('trigger', 'trigger_field_ids')
|
||||
def _compute_trg_date_id(self):
|
||||
to_reset = self.filtered(lambda a: a.trigger not in TIME_TRIGGERS or len(a.trigger_field_ids) != 1)
|
||||
to_reset.trg_date_id = False
|
||||
for record in (self - to_reset):
|
||||
record.trg_date_id = record.trigger_field_ids
|
||||
|
||||
@api.depends('trigger')
|
||||
def _compute_trg_date_range_data(self):
|
||||
to_reset = self.filtered(lambda a: a.trigger not in TIME_TRIGGERS)
|
||||
to_reset.trg_date_range = False
|
||||
to_reset.trg_date_range_type = False
|
||||
(self - to_reset).filtered(lambda a: not a.trg_date_range_type).trg_date_range_type = 'hour'
|
||||
|
||||
@api.depends('trigger', 'trg_date_id', 'trg_date_range_type')
|
||||
def _compute_trg_date_calendar_id(self):
|
||||
to_reset = self.filtered(
|
||||
lambda a: a.trigger not in TIME_TRIGGERS or not a.trg_date_id or a.trg_date_range_type != 'day'
|
||||
)
|
||||
to_reset.trg_date_calendar_id = False
|
||||
|
||||
@api.depends('trigger', 'trigger_field_ids')
|
||||
def _compute_trg_selection_field_id(self):
|
||||
to_reset = self.filtered(lambda a: a.trigger not in ['on_priority_set', 'on_state_set'] or len(a.trigger_field_ids) != 1)
|
||||
to_reset.trg_selection_field_id = False
|
||||
for automation in (self - to_reset):
|
||||
# always re-assign to an empty value to make sure we have no discrepencies
|
||||
automation.trg_selection_field_id = self.env['ir.model.fields.selection']
|
||||
|
||||
@api.depends('trigger', 'trigger_field_ids')
|
||||
def _compute_trg_field_ref(self):
|
||||
to_reset = self.filtered(lambda a: a.trigger not in ['on_stage_set', 'on_tag_set'] or len(a.trigger_field_ids) != 1)
|
||||
to_reset.trg_field_ref = False
|
||||
for automation in (self - to_reset):
|
||||
relation = automation.trigger_field_ids.relation
|
||||
automation.trg_field_ref_model_name = relation
|
||||
# always re-assign to an empty value to make sure we have no discrepencies
|
||||
automation.trg_field_ref = self.env[relation]
|
||||
|
||||
@api.depends('trg_field_ref', 'trigger_field_ids')
|
||||
def _compute_trg_field_ref__model_and_display_names(self):
|
||||
to_compute = self.filtered(lambda a: a.trigger in ['on_stage_set', 'on_tag_set'] and a.trg_field_ref is not False)
|
||||
# wondering why we check based on 'is not'? Because the ref could be an empty recordset
|
||||
# and we still need to introspec on the model in that case - not just ignore it
|
||||
to_reset = (self - to_compute)
|
||||
to_reset.trg_field_ref_model_name = False
|
||||
to_reset.trg_field_ref_display_name = False
|
||||
for automation in to_compute:
|
||||
relation = automation.trigger_field_ids.relation
|
||||
if not relation:
|
||||
automation.trg_field_ref_model_name = False
|
||||
automation.trg_field_ref_display_name = False
|
||||
continue
|
||||
resid = automation.trg_field_ref
|
||||
automation.trg_field_ref_model_name = relation
|
||||
automation.trg_field_ref_display_name = self.env[relation].browse(resid).display_name
|
||||
|
||||
@api.depends('trigger', 'trigger_field_ids', 'trg_field_ref')
|
||||
def _compute_filter_pre_domain(self):
|
||||
to_reset = self.filtered(lambda a: a.trigger != 'on_tag_set' or len(a.trigger_field_ids) != 1)
|
||||
to_reset.filter_pre_domain = False
|
||||
for automation in (self - to_reset):
|
||||
field = automation.trigger_field_ids.name
|
||||
value = automation.trg_field_ref
|
||||
automation.filter_pre_domain = f"[('{field}', 'not in', [{value}])]" if value else False
|
||||
|
||||
@api.depends('trigger', 'trigger_field_ids', 'trg_selection_field_id', 'trg_field_ref')
|
||||
def _compute_filter_domain(self):
|
||||
for record in self:
|
||||
trigger_fields_count = len(record.trigger_field_ids)
|
||||
if trigger_fields_count == 0:
|
||||
record.filter_domain = False
|
||||
|
||||
elif trigger_fields_count == 1:
|
||||
field = record.trigger_field_ids.name
|
||||
trigger = record.trigger
|
||||
if trigger in ['on_state_set', 'on_priority_set']:
|
||||
value = record.trg_selection_field_id.value
|
||||
record.filter_domain = f"[('{field}', '=', '{value}')]" if value else False
|
||||
elif trigger == 'on_stage_set':
|
||||
value = record.trg_field_ref
|
||||
record.filter_domain = f"[('{field}', '=', {value})]" if value else False
|
||||
elif trigger == 'on_tag_set':
|
||||
value = record.trg_field_ref
|
||||
record.filter_domain = f"[('{field}', 'in', [{value}])]" if value else False
|
||||
elif trigger == 'on_user_set':
|
||||
record.filter_domain = f"[('{field}', '!=', False)]"
|
||||
elif trigger in ['on_archive', 'on_unarchive']:
|
||||
record.filter_domain = f"[('{field}', '=', {trigger == 'on_unarchive'})]"
|
||||
else:
|
||||
record.filter_domain = False
|
||||
|
||||
@api.depends('model_id', 'trigger')
|
||||
def _compute_on_change_field_ids(self):
|
||||
to_reset = self.filtered(lambda a: a.trigger != 'on_change')
|
||||
to_reset.on_change_field_ids = False
|
||||
for record in (self - to_reset).filtered('on_change_field_ids'):
|
||||
record.on_change_field_ids = record.on_change_field_ids.filtered(lambda field: field.model_id == record.model_id)
|
||||
|
||||
@api.depends('model_id', 'trigger')
|
||||
def _compute_trigger_and_trigger_field_ids(self):
|
||||
for automation in self:
|
||||
domain = [('model_id', '=', automation.model_id.id)]
|
||||
if automation.trigger == 'on_stage_set':
|
||||
domain += [('ttype', '=', 'many2one'), ('name', 'in', ['stage_id', 'x_studio_stage_id'])]
|
||||
elif automation.trigger == 'on_tag_set':
|
||||
domain += [('ttype', '=', 'many2many'), ('name', 'in', ['tag_ids', 'x_studio_tag_ids'])]
|
||||
elif automation.trigger == 'on_priority_set':
|
||||
domain += [('ttype', '=', 'selection'), ('name', 'in', ['priority', 'x_studio_priority'])]
|
||||
elif automation.trigger == 'on_state_set':
|
||||
domain += [('ttype', '=', 'selection'), ('name', 'in', ['state', 'x_studio_state'])]
|
||||
elif automation.trigger == 'on_user_set':
|
||||
domain += [
|
||||
('relation', '=', 'res.users'),
|
||||
('ttype', 'in', ['many2one', 'many2many']),
|
||||
('name', 'in', ['user_id', 'user_ids', 'x_studio_user_id', 'x_studio_user_ids']),
|
||||
]
|
||||
elif automation.trigger in ['on_archive', 'on_unarchive']:
|
||||
domain += [('ttype', '=', 'boolean'), ('name', 'in', ['active', 'x_active'])]
|
||||
elif automation.trigger == 'on_time_created':
|
||||
domain += [('ttype', '=', 'datetime'), ('name', '=', 'create_date')]
|
||||
elif automation.trigger == 'on_time_updated':
|
||||
domain += [('ttype', '=', 'datetime'), ('name', '=', 'write_date')]
|
||||
else:
|
||||
automation.trigger_field_ids = False
|
||||
continue
|
||||
if automation.model_id.is_mail_thread and automation.trigger in MAIL_TRIGGERS:
|
||||
continue
|
||||
|
||||
automation.trigger_field_ids = self.env['ir.model.fields'].search(domain, limit=1)
|
||||
automation.trigger = False if not automation.trigger_field_ids else automation.trigger
|
||||
|
||||
@api.onchange('trigger', 'action_server_ids')
|
||||
def _onchange_trigger_or_actions(self):
|
||||
no_code_actions = self.action_server_ids.filtered(lambda a: a.state != 'code')
|
||||
if self.trigger == 'on_change' and len(no_code_actions) > 0:
|
||||
trigger_field = self._fields['trigger']
|
||||
action_states = dict(self.action_server_ids._fields['state']._description_selection(self.env))
|
||||
return {'warning': {
|
||||
'title': _("Warning"),
|
||||
'message': _(
|
||||
"The \"%(trigger_value)s\" %(trigger_label)s can only be "
|
||||
"used with the \"%(state_value)s\" action type",
|
||||
trigger_value=dict(trigger_field._description_selection(self.env))['on_change'],
|
||||
trigger_label=trigger_field._description_string(self.env),
|
||||
state_value=action_states['code'])
|
||||
}}
|
||||
|
||||
MAIL_STATES = ('mail_post', 'followers', 'next_activity')
|
||||
mail_actions = self.action_server_ids.filtered(lambda a: a.state in MAIL_STATES)
|
||||
if self.trigger == 'on_unlink' and len(mail_actions) > 0:
|
||||
return {'warning': {
|
||||
'title': _("Warning"),
|
||||
'message': _(
|
||||
"You cannot send an email, add followers or create an activity "
|
||||
"for a deleted record. It simply does not work."
|
||||
),
|
||||
}}
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
base_automations = super(BaseAutomation, self).create(vals_list)
|
||||
self._update_cron()
|
||||
self._update_registry()
|
||||
return base_automations
|
||||
|
||||
def write(self, vals):
|
||||
res = super(BaseAutomation, self).write(vals)
|
||||
if set(vals).intersection(self.CRITICAL_FIELDS):
|
||||
self._update_cron()
|
||||
self._update_registry()
|
||||
elif set(vals).intersection(self.RANGE_FIELDS):
|
||||
self._update_cron()
|
||||
return res
|
||||
|
||||
def unlink(self):
|
||||
res = super(BaseAutomation, self).unlink()
|
||||
self._update_cron()
|
||||
self._update_registry()
|
||||
return res
|
||||
|
||||
def action_rotate_webhook_uuid(self):
|
||||
for automation in self:
|
||||
automation.webhook_uuid = str(uuid4())
|
||||
|
||||
def action_view_webhook_logs(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
'type': 'ir.actions.act_window',
|
||||
'name': _('Webhook Logs'),
|
||||
'res_model': 'ir.logging',
|
||||
'view_mode': 'tree,form',
|
||||
'domain': [('path', '=', "base_automation(%s)" % self.id)],
|
||||
}
|
||||
|
||||
def _prepare_loggin_values(self, **values):
|
||||
self.ensure_one()
|
||||
defaults = {
|
||||
'name': _("Webhook Log"),
|
||||
'type': 'server',
|
||||
'dbname': self._cr.dbname,
|
||||
'level': 'INFO',
|
||||
'path': "base_automation(%s)" % self.id,
|
||||
'func': '',
|
||||
'line': ''
|
||||
}
|
||||
defaults.update(**values)
|
||||
return defaults
|
||||
|
||||
def _execute_webhook(self, payload):
|
||||
""" Execute the webhook for the given payload.
|
||||
The payload is a dictionnary that can be used by the `record_getter` to
|
||||
identify the record on which the automation should be run.
|
||||
"""
|
||||
self.ensure_one()
|
||||
ir_logging_sudo = self.env['ir.logging'].sudo()
|
||||
|
||||
# info logging is done by the ir.http logger
|
||||
msg = "Webhook #%s triggered with payload %s"
|
||||
msg_args = (self.id, payload)
|
||||
_logger.debug(msg, *msg_args)
|
||||
if self.log_webhook_calls:
|
||||
ir_logging_sudo.create(self._prepare_loggin_values(message=msg % msg_args))
|
||||
|
||||
record = self.env[self.model_name]
|
||||
if self.record_getter:
|
||||
try:
|
||||
record = safe_eval.safe_eval(self.record_getter, self._get_eval_context(payload=payload))
|
||||
except Exception as e: # noqa: BLE001
|
||||
msg = "Webhook #%s could not be triggered because the record_getter failed:\n%s"
|
||||
msg_args = (self.id, traceback.format_exc())
|
||||
_logger.warning(msg, *msg_args)
|
||||
if self.log_webhook_calls:
|
||||
ir_logging_sudo.create(self._prepare_loggin_values(message=msg % msg_args, level="ERROR"))
|
||||
raise e
|
||||
|
||||
if not record.exists():
|
||||
msg = "Webhook #%s could not be triggered because no record to run it on was found."
|
||||
msg_args = (self.id,)
|
||||
_logger.warning(msg, *msg_args)
|
||||
if self.log_webhook_calls:
|
||||
ir_logging_sudo.create(self._prepare_loggin_values(message=msg % msg_args, level="ERROR"))
|
||||
raise exceptions.ValidationError(_("No record to run the automation on was found."))
|
||||
|
||||
try:
|
||||
return self._process(record)
|
||||
except Exception as e: # noqa: BLE001
|
||||
msg = "Webhook #%s failed with error:\n%s"
|
||||
msg_args = (self.id, traceback.format_exc())
|
||||
_logger.warning(msg, *msg_args)
|
||||
if self.log_webhook_calls:
|
||||
ir_logging_sudo.create(self._prepare_loggin_values(message=msg % msg_args, level="ERROR"))
|
||||
raise e
|
||||
|
||||
def _update_cron(self):
|
||||
""" Activate the cron job depending on whether there exists automation rules
|
||||
based on time conditions. Also update its frequency according to
|
||||
the smallest automation delay, or restore the default 4 hours if there
|
||||
is no time based automation.
|
||||
"""
|
||||
cron = self.env.ref('base_automation.ir_cron_data_base_automation_check', raise_if_not_found=False)
|
||||
if cron:
|
||||
automations = self.with_context(active_test=True).search([('trigger', 'in', TIME_TRIGGERS)])
|
||||
cron.try_write({
|
||||
'active': bool(automations),
|
||||
'interval_type': 'minutes',
|
||||
'interval_number': self._get_cron_interval(automations),
|
||||
})
|
||||
|
||||
def _update_registry(self):
|
||||
""" Update the registry after a modification on automation rules. """
|
||||
if self.env.registry.ready and not self.env.context.get('import_file'):
|
||||
# re-install the model patches, and notify other workers
|
||||
self._unregister_hook()
|
||||
self._register_hook()
|
||||
self.env.registry.registry_invalidated = True
|
||||
|
||||
def _get_actions(self, records, triggers):
|
||||
""" Return the automations of the given triggers for records' model. The
|
||||
returned automations' context contain an object to manage processing.
|
||||
"""
|
||||
# Note: we keep the old action naming for the method and context variable
|
||||
# to avoid breaking existing code/downstream modules
|
||||
if '__action_done' not in self._context:
|
||||
self = self.with_context(__action_done={})
|
||||
domain = [('model_name', '=', records._name), ('trigger', 'in', triggers)]
|
||||
automations = self.with_context(active_test=True).sudo().search(domain)
|
||||
return automations.with_env(self.env)
|
||||
|
||||
def _get_eval_context(self, payload=None):
|
||||
""" Prepare the context used when evaluating python code
|
||||
:returns: dict -- evaluation context given to safe_eval
|
||||
"""
|
||||
self.ensure_one()
|
||||
model = self.env[self.model_name]
|
||||
eval_context = {
|
||||
'datetime': safe_eval.datetime,
|
||||
'dateutil': safe_eval.dateutil,
|
||||
'time': safe_eval.time,
|
||||
'uid': self.env.uid,
|
||||
'user': self.env.user,
|
||||
'model': model,
|
||||
}
|
||||
if payload is not None:
|
||||
eval_context['payload'] = payload
|
||||
return eval_context
|
||||
|
||||
def _get_cron_interval(self, automations=None):
|
||||
""" Return the expected time interval used by the cron, in minutes. """
|
||||
def get_delay(rec):
|
||||
return rec.trg_date_range * DATE_RANGE_FACTOR[rec.trg_date_range_type]
|
||||
|
||||
if automations is None:
|
||||
automations = self.with_context(active_test=True).search([('trigger', 'in', TIME_TRIGGERS)])
|
||||
|
||||
# Minimum 1 minute, maximum 4 hours, 10% tolerance
|
||||
delay = min(automations.mapped(get_delay), default=0)
|
||||
return min(max(1, delay // 10), 4 * 60) if delay else 4 * 60
|
||||
|
||||
def _compute_least_delay_msg(self):
|
||||
msg = _("Note that this automation rule can be triggered up to %d minutes after its schedule.")
|
||||
self.least_delay_msg = msg % self._get_cron_interval()
|
||||
|
||||
def _filter_pre(self, records):
|
||||
""" Filter the records that satisfy the precondition of automation ``self``. """
|
||||
self_sudo = self.sudo()
|
||||
if self_sudo.filter_pre_domain and records:
|
||||
domain = safe_eval.safe_eval(self_sudo.filter_pre_domain, self._get_eval_context())
|
||||
return records.sudo().filtered_domain(domain).with_env(records.env)
|
||||
else:
|
||||
return records
|
||||
|
||||
def _filter_post(self, records):
|
||||
return self._filter_post_export_domain(records)[0]
|
||||
|
||||
def _filter_post_export_domain(self, records):
|
||||
""" Filter the records that satisfy the postcondition of automation ``self``. """
|
||||
self_sudo = self.sudo()
|
||||
if self_sudo.filter_domain and records:
|
||||
domain = safe_eval.safe_eval(self_sudo.filter_domain, self._get_eval_context())
|
||||
return records.sudo().filtered_domain(domain).with_env(records.env), domain
|
||||
else:
|
||||
return records, None
|
||||
|
||||
@api.model
|
||||
def _add_postmortem(self, e):
|
||||
if self.user_has_groups('base.group_user'):
|
||||
e.context = {}
|
||||
e.context['exception_class'] = 'base_automation'
|
||||
e.context['base_automation'] = {
|
||||
'id': self.id,
|
||||
'name': self.sudo().name,
|
||||
}
|
||||
|
||||
def _process(self, records, domain_post=None):
|
||||
""" Process automation ``self`` on the ``records`` that have not been done yet. """
|
||||
# filter out the records on which self has already been done
|
||||
automation_done = self._context.get('__action_done', {})
|
||||
records_done = automation_done.get(self, records.browse())
|
||||
records -= records_done
|
||||
if not records:
|
||||
return
|
||||
|
||||
# mark the remaining records as done (to avoid recursive processing)
|
||||
automation_done = dict(automation_done)
|
||||
automation_done[self] = records_done + records
|
||||
self = self.with_context(__action_done=automation_done)
|
||||
records = records.with_context(__action_done=automation_done)
|
||||
|
||||
# modify records
|
||||
if 'date_automation_last' in records._fields:
|
||||
records.date_automation_last = fields.Datetime.now()
|
||||
|
||||
# prepare the contexts for server actions
|
||||
contexts = []
|
||||
for record in records:
|
||||
# we process the automation if any watched field has been modified
|
||||
if self._check_trigger_fields(record):
|
||||
contexts.append({
|
||||
'active_model': record._name,
|
||||
'active_ids': record.ids,
|
||||
'active_id': record.id,
|
||||
'domain_post': domain_post,
|
||||
})
|
||||
|
||||
# execute server actions
|
||||
for action in self.sudo().action_server_ids:
|
||||
for ctx in contexts:
|
||||
try:
|
||||
action.with_context(**ctx).run()
|
||||
except Exception as e:
|
||||
self._add_postmortem(e)
|
||||
raise
|
||||
|
||||
def _check_trigger_fields(self, record):
|
||||
""" Return whether any of the trigger fields has been modified on ``record``. """
|
||||
self_sudo = self.sudo()
|
||||
if not self_sudo.trigger_field_ids:
|
||||
# all fields are implicit triggers
|
||||
return True
|
||||
|
||||
if not self._context.get('old_values'):
|
||||
# this is a create: all fields are considered modified
|
||||
return True
|
||||
|
||||
# Note: old_vals are in the format of read()
|
||||
old_vals = self._context['old_values'].get(record.id, {})
|
||||
|
||||
def differ(name):
|
||||
field = record._fields[name]
|
||||
return (
|
||||
name in old_vals and
|
||||
field.convert_to_cache(record[name], record, validate=False) !=
|
||||
field.convert_to_cache(old_vals[name], record, validate=False)
|
||||
)
|
||||
return any(differ(field.name) for field in self_sudo.trigger_field_ids)
|
||||
|
||||
def _register_hook(self):
|
||||
""" Patch models that should trigger action rules based on creation,
|
||||
modification, deletion of records and form onchanges.
|
||||
"""
|
||||
#
|
||||
# Note: the patched methods must be defined inside another function,
|
||||
# otherwise their closure may be wrong. For instance, the function
|
||||
# create refers to the outer variable 'create', which you expect to be
|
||||
# bound to create itself. But that expectation is wrong if create is
|
||||
# defined inside a loop; in that case, the variable 'create' is bound to
|
||||
# the last function defined by the loop.
|
||||
#
|
||||
|
||||
def make_create():
|
||||
""" Instanciate a create method that processes automation rules. """
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list, **kw):
|
||||
# retrieve the automation rules to possibly execute
|
||||
automations = self.env['base.automation']._get_actions(self, CREATE_TRIGGERS)
|
||||
if not automations:
|
||||
return create.origin(self, vals_list, **kw)
|
||||
# call original method
|
||||
records = create.origin(self.with_env(automations.env), vals_list, **kw)
|
||||
# check postconditions, and execute actions on the records that satisfy them
|
||||
for automation in automations.with_context(old_values=None):
|
||||
automation._process(automation._filter_post(records))
|
||||
return records.with_env(self.env)
|
||||
|
||||
return create
|
||||
|
||||
def make_write():
|
||||
""" Instanciate a write method that processes automation rules. """
|
||||
def write(self, vals, **kw):
|
||||
# retrieve the automation rules to possibly execute
|
||||
automations = self.env['base.automation']._get_actions(self, WRITE_TRIGGERS)
|
||||
if not (automations and self):
|
||||
return write.origin(self, vals, **kw)
|
||||
records = self.with_env(automations.env).filtered('id')
|
||||
# check preconditions on records
|
||||
pre = {a: a._filter_pre(records) for a in automations}
|
||||
# read old values before the update
|
||||
old_values = {
|
||||
old_vals.pop('id'): old_vals
|
||||
for old_vals in (records.read(list(vals)) if vals else [])
|
||||
}
|
||||
# call original method
|
||||
write.origin(self.with_env(automations.env), vals, **kw)
|
||||
# check postconditions, and execute actions on the records that satisfy them
|
||||
for automation in automations.with_context(old_values=old_values):
|
||||
records, domain_post = automation._filter_post_export_domain(pre[automation])
|
||||
automation._process(records, domain_post=domain_post)
|
||||
return True
|
||||
|
||||
return write
|
||||
|
||||
def make_compute_field_value():
|
||||
""" Instanciate a compute_field_value method that processes automation rules. """
|
||||
#
|
||||
# Note: This is to catch updates made by field recomputations.
|
||||
#
|
||||
def _compute_field_value(self, field):
|
||||
# determine fields that may trigger an automation
|
||||
stored_fields = [f for f in self.pool.field_computed[field] if f.store]
|
||||
if not any(stored_fields):
|
||||
return _compute_field_value.origin(self, field)
|
||||
# retrieve the action rules to possibly execute
|
||||
automations = self.env['base.automation']._get_actions(self, WRITE_TRIGGERS)
|
||||
records = self.filtered('id').with_env(automations.env)
|
||||
if not (automations and records):
|
||||
_compute_field_value.origin(self, field)
|
||||
return True
|
||||
# check preconditions on records
|
||||
pre = {a: a._filter_pre(records) for a in automations}
|
||||
# read old values before the update
|
||||
old_values = {
|
||||
old_vals.pop('id'): old_vals
|
||||
for old_vals in (records.read([f.name for f in stored_fields]))
|
||||
}
|
||||
# call original method
|
||||
_compute_field_value.origin(self, field)
|
||||
# check postconditions, and execute automations on the records that satisfy them
|
||||
for automation in automations.with_context(old_values=old_values):
|
||||
records, domain_post = automation._filter_post_export_domain(pre[automation])
|
||||
automation._process(records, domain_post=domain_post)
|
||||
return True
|
||||
|
||||
return _compute_field_value
|
||||
|
||||
def make_unlink():
|
||||
""" Instanciate an unlink method that processes automation rules. """
|
||||
def unlink(self, **kwargs):
|
||||
# retrieve the action rules to possibly execute
|
||||
automations = self.env['base.automation']._get_actions(self, ['on_unlink'])
|
||||
records = self.with_env(automations.env)
|
||||
# check conditions, and execute actions on the records that satisfy them
|
||||
for automation in automations:
|
||||
automation._process(automation._filter_post(records))
|
||||
# call original method
|
||||
return unlink.origin(self, **kwargs)
|
||||
|
||||
return unlink
|
||||
|
||||
def make_onchange(automation_rule_id):
|
||||
""" Instanciate an onchange method for the given automation rule. """
|
||||
def base_automation_onchange(self):
|
||||
automation_rule = self.env['base.automation'].browse(automation_rule_id)
|
||||
result = {}
|
||||
actions = automation_rule.sudo().action_server_ids.with_context(
|
||||
active_model=self._name,
|
||||
active_id=self._origin.id,
|
||||
active_ids=self._origin.ids,
|
||||
onchange_self=self,
|
||||
)
|
||||
for action in actions:
|
||||
try:
|
||||
res = action.run()
|
||||
except Exception as e:
|
||||
automation_rule._add_postmortem(e)
|
||||
raise
|
||||
|
||||
if res:
|
||||
if 'value' in res:
|
||||
res['value'].pop('id', None)
|
||||
self.update({key: val for key, val in res['value'].items() if key in self._fields})
|
||||
if 'domain' in res:
|
||||
result.setdefault('domain', {}).update(res['domain'])
|
||||
if 'warning' in res:
|
||||
result['warning'] = res["warning"]
|
||||
return result
|
||||
|
||||
return base_automation_onchange
|
||||
|
||||
patched_models = defaultdict(set)
|
||||
|
||||
def patch(model, name, method):
|
||||
""" Patch method `name` on `model`, unless it has been patched already. """
|
||||
if model not in patched_models[name]:
|
||||
patched_models[name].add(model)
|
||||
ModelClass = model.env.registry[model._name]
|
||||
method.origin = getattr(ModelClass, name)
|
||||
setattr(ModelClass, name, method)
|
||||
|
||||
# retrieve all actions, and patch their corresponding model
|
||||
for automation_rule in self.with_context({}).search([]):
|
||||
Model = self.env.get(automation_rule.model_name)
|
||||
|
||||
# Do not crash if the model of the base_action_rule was uninstalled
|
||||
if Model is None:
|
||||
_logger.warning(
|
||||
"Automation rule with name '%s' (ID %d) depends on model %s (ID: %d)",
|
||||
automation_rule.name,
|
||||
automation_rule.id,
|
||||
automation_rule.model_name,
|
||||
automation_rule.model_id.id)
|
||||
continue
|
||||
|
||||
if automation_rule.trigger in CREATE_WRITE_SET:
|
||||
if automation_rule.trigger in CREATE_TRIGGERS:
|
||||
patch(Model, 'create', make_create())
|
||||
if automation_rule.trigger in WRITE_TRIGGERS:
|
||||
patch(Model, 'write', make_write())
|
||||
patch(Model, '_compute_field_value', make_compute_field_value())
|
||||
|
||||
elif automation_rule.trigger == 'on_unlink':
|
||||
patch(Model, 'unlink', make_unlink())
|
||||
|
||||
elif automation_rule.trigger == 'on_change':
|
||||
# register an onchange method for the automation_rule
|
||||
method = make_onchange(automation_rule.id)
|
||||
for field in automation_rule.on_change_field_ids:
|
||||
Model._onchange_methods[field.name].append(method)
|
||||
if automation_rule.on_change_field_ids:
|
||||
self.env.registry.clear_cache('templates')
|
||||
|
||||
if automation_rule.model_id.is_mail_thread and automation_rule.trigger in MAIL_TRIGGERS:
|
||||
def _message_post(self, *args, **kwargs):
|
||||
message = _message_post.origin(self, *args, **kwargs)
|
||||
# Don't execute automations for a message emitted during
|
||||
# the run of automations for a real message
|
||||
# Don't execute if we know already that a message is only internal
|
||||
message_sudo = message.sudo().with_context(active_test=False)
|
||||
if "__action_done" in self.env.context or message_sudo.is_internal or message_sudo.subtype_id.internal:
|
||||
return message
|
||||
if message_sudo.message_type in ('notification', 'auto_comment', 'user_notification'):
|
||||
return message
|
||||
|
||||
# always execute actions when the author is a customer
|
||||
mail_trigger = "on_message_received" if message_sudo.author_id.partner_share else "on_message_sent"
|
||||
automations = self.env['base.automation']._get_actions(self, [mail_trigger])
|
||||
for automation in automations.with_context(old_values=None):
|
||||
records = automation._filter_pre(self)
|
||||
automation._process(records)
|
||||
|
||||
return message
|
||||
|
||||
patch(Model, "message_post", _message_post)
|
||||
|
||||
def _unregister_hook(self):
|
||||
""" Remove the patches installed by _register_hook() """
|
||||
NAMES = ['create', 'write', '_compute_field_value', 'unlink', '_onchange_methods', "message_post"]
|
||||
for Model in self.env.registry.values():
|
||||
for name in NAMES:
|
||||
try:
|
||||
delattr(Model, name)
|
||||
except AttributeError:
|
||||
pass
|
||||
|
||||
@api.model
|
||||
def _check_delay(self, automation, record, record_dt):
|
||||
if automation.trg_date_calendar_id and automation.trg_date_range_type == 'day':
|
||||
return automation.trg_date_calendar_id.plan_days(
|
||||
automation.trg_date_range,
|
||||
fields.Datetime.from_string(record_dt),
|
||||
compute_leaves=True,
|
||||
)
|
||||
else:
|
||||
delay = DATE_RANGE_FUNCTION[automation.trg_date_range_type](automation.trg_date_range)
|
||||
return fields.Datetime.from_string(record_dt) + delay
|
||||
|
||||
@api.model
|
||||
def _check(self, automatic=False, use_new_cursor=False):
|
||||
""" This Function is called by scheduler. """
|
||||
if '__action_done' not in self._context:
|
||||
self = self.with_context(__action_done={})
|
||||
|
||||
# retrieve all the automation rules to run based on a timed condition
|
||||
for automation in self.with_context(active_test=True).search([('trigger', 'in', TIME_TRIGGERS)]):
|
||||
_logger.info("Starting time-based automation rule `%s`.", automation.name)
|
||||
last_run = fields.Datetime.from_string(automation.last_run) or datetime.datetime.utcfromtimestamp(0)
|
||||
eval_context = automation._get_eval_context()
|
||||
|
||||
# retrieve all the records that satisfy the automation's condition
|
||||
domain = []
|
||||
context = dict(self._context)
|
||||
if automation.filter_domain:
|
||||
domain = safe_eval.safe_eval(automation.filter_domain, eval_context)
|
||||
records = self.env[automation.model_name].with_context(context).search(domain)
|
||||
|
||||
def get_record_dt(record):
|
||||
# determine when automation should occur for the records
|
||||
if automation.trg_date_id.name == "date_automation_last" and "create_date" in records._fields:
|
||||
return record[automation.trg_date_id.name] or record.create_date
|
||||
else:
|
||||
return record[automation.trg_date_id.name]
|
||||
|
||||
# process action on the records that should be executed
|
||||
now = datetime.datetime.now()
|
||||
for record in records:
|
||||
record_dt = get_record_dt(record)
|
||||
if not record_dt:
|
||||
continue
|
||||
action_dt = self._check_delay(automation, record, record_dt)
|
||||
if last_run <= action_dt < now:
|
||||
try:
|
||||
automation._process(record)
|
||||
except Exception:
|
||||
_logger.error(traceback.format_exc())
|
||||
|
||||
automation.write({'last_run': now.strftime(DEFAULT_SERVER_DATETIME_FORMAT)})
|
||||
_logger.info("Time-based automation rule `%s` done.", automation.name)
|
||||
|
||||
if automatic:
|
||||
# auto-commit for batch processing
|
||||
self._cr.commit()
|
94
models/ir_actions_server.py
Normal file
94
models/ir_actions_server.py
Normal file
@ -0,0 +1,94 @@
|
||||
# -*- 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 api, exceptions, fields, models, _
|
||||
|
||||
from .base_automation import get_webhook_request_payload
|
||||
|
||||
class ServerAction(models.Model):
|
||||
_inherit = "ir.actions.server"
|
||||
|
||||
name = fields.Char(compute='_compute_name', store=True, readonly=False)
|
||||
|
||||
usage = fields.Selection(selection_add=[
|
||||
('base_automation', 'Automation Rule')
|
||||
], ondelete={'base_automation': 'cascade'})
|
||||
base_automation_id = fields.Many2one('base.automation', string='Automation Rule', ondelete='cascade')
|
||||
|
||||
@api.constrains('model_id', 'base_automation_id')
|
||||
def _check_model_coherency_with_automation(self):
|
||||
for action in self.filtered('base_automation_id'):
|
||||
if action.model_id != action.base_automation_id.model_id:
|
||||
raise exceptions.ValidationError(
|
||||
_("Model of action %(action_name)s should match the one from automated rule %(rule_name)s.",
|
||||
action_name=action.name,
|
||||
rule_name=action.base_automation_id.name
|
||||
)
|
||||
)
|
||||
|
||||
@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 []
|
||||
|
||||
@api.depends('state', 'update_field_id', 'crud_model_id', 'value', 'evaluation_type', 'template_id', 'partner_ids', 'activity_summary', 'sms_template_id', 'webhook_url')
|
||||
def _compute_name(self):
|
||||
''' Only server actions linked to a base_automation get an automatic name. '''
|
||||
to_update = self.filtered('base_automation_id')
|
||||
for action in to_update:
|
||||
match action.state:
|
||||
case 'object_write':
|
||||
action_type = _("Update") if action.evaluation_type == 'value' else _("Compute")
|
||||
action.name = f"{action_type} {action._stringify_path()}"
|
||||
case 'object_create':
|
||||
action.name = _(
|
||||
"Create %(model_name)s with name %(value)s",
|
||||
model_name=action.crud_model_id.name,
|
||||
value=action.value
|
||||
)
|
||||
case 'webhook':
|
||||
action.name = _("Send Webhook Notification")
|
||||
case 'sms':
|
||||
action.name = _(
|
||||
'Send SMS: %(template_name)s',
|
||||
template_name=action.sms_template_id.name
|
||||
)
|
||||
case 'mail_post':
|
||||
action.name = _(
|
||||
'Send email: %(template_name)s',
|
||||
template_name=action.template_id.name
|
||||
)
|
||||
case 'followers':
|
||||
action.name = _(
|
||||
'Add followers: %(partner_names)s',
|
||||
partner_names=', '.join(action.partner_ids.mapped('name'))
|
||||
)
|
||||
case 'remove_followers':
|
||||
action.name = _(
|
||||
'Remove followers: %(partner_names)s',
|
||||
partner_names=', '.join(action.partner_ids.mapped('name'))
|
||||
)
|
||||
case 'next_activity':
|
||||
action.name = _(
|
||||
'Create activity: %(activity_name)s',
|
||||
activity_name=action.activity_summary or action.activity_type_id.name
|
||||
)
|
||||
case other:
|
||||
action.name = dict(action._fields['state']._description_selection(self.env))[action.state]
|
||||
# Not sure, but IIRC assignation is mandatory and I don't want the name to be reset by accident
|
||||
for action in (self - to_update):
|
||||
action.name = action.name or ''
|
||||
|
||||
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
|
2
security/ir.model.access.csv
Normal file
2
security/ir.model.access.csv
Normal file
@ -0,0 +1,2 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_base_automation_config,base.automation config,model_base_automation,base.group_system,1,1,1,1
|
|
25
static/img/automation.svg
Normal file
25
static/img/automation.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 44 KiB |
56
static/src/base_automation.scss
Normal file
56
static/src/base_automation.scss
Normal file
@ -0,0 +1,56 @@
|
||||
.o_base_automation_actions_field,
|
||||
.o_base_automation_kanban_view {
|
||||
.o_kanban_ungrouped {
|
||||
padding: 0;
|
||||
|
||||
.o_kanban_record {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
|
||||
&.o_kanban_ghost {
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
@include media-breakpoint-up(md) {
|
||||
.o_automation_base_info {
|
||||
width: 25%;
|
||||
min-width: 200px;
|
||||
min-height: 90px
|
||||
};
|
||||
.o_automation_actions {
|
||||
display: flex !important;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.o_base_automation_actions_field .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 .oe_kanban_global_click {
|
||||
border-top: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.o_widget_web_ribbon {
|
||||
align-self: flex-start;
|
||||
}
|
||||
}
|
||||
}
|
161
static/src/base_automation_actions_one2many_field.js
Normal file
161
static/src/base_automation_actions_one2many_field.js
Normal file
@ -0,0 +1,161 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { Component, useExternalListener, useEffect, useRef } from "@odoo/owl";
|
||||
import { _lt, _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";
|
||||
static actionStates = {
|
||||
code: _lt("Execute Python Code"),
|
||||
object_create: _lt("Create a new Record"),
|
||||
object_write: _lt("Update the Record"),
|
||||
multi: _lt("Execute several actions"),
|
||||
mail_post: _lt("Send email"),
|
||||
followers: _lt("Add followers"),
|
||||
remove_followers: _lt("Remove followers"),
|
||||
next_activity: _lt("Create next activity"),
|
||||
sms: _lt("Send SMS Text Message"),
|
||||
};
|
||||
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();
|
||||
}
|
||||
}
|
||||
getActionType(action) {
|
||||
return this.constructor.actionStates[action.data.state] || action.data.state;
|
||||
}
|
||||
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",
|
||||
selection: [
|
||||
["code", _lt("Execute Python Code")],
|
||||
["object_create", _lt("Create a new Record")],
|
||||
["object_write", _lt("Update the Record")],
|
||||
["multi", _lt("Execute several actions")],
|
||||
["mail_post", _lt("Send email")],
|
||||
["followers", _lt("Add followers")],
|
||||
["remove_followers", _lt("Remove followers")],
|
||||
["next_activity", _lt("Create next activity")],
|
||||
["sms", _lt("Send SMS Text Message")],
|
||||
],
|
||||
},
|
||||
// Execute Python Code
|
||||
{ name: "code", type: "text" },
|
||||
// Create
|
||||
{ name: "crud_model_id", type: "many2one" },
|
||||
{ name: "crud_model_name", type: "char" },
|
||||
// Add Followers
|
||||
{ name: "partner_ids", type: "many2many" },
|
||||
// Message Post / Email
|
||||
{ name: "template_id", type: "many2one" },
|
||||
{ name: "mail_post_autofollow", type: "boolean" },
|
||||
{
|
||||
name: "mail_post_method",
|
||||
type: "selection",
|
||||
selection: [
|
||||
["email", _lt("Email")],
|
||||
["comment", _lt("Post as Message")],
|
||||
["note", _lt("Post as Note")],
|
||||
],
|
||||
},
|
||||
// Schedule Next Activity
|
||||
{ name: "activity_type_id", type: "many2one" },
|
||||
{ name: "activity_summary", type: "char" },
|
||||
{ name: "activity_note", type: "html" },
|
||||
{ name: "activity_date_deadline_range", type: "integer" },
|
||||
{
|
||||
name: "activity_date_deadline_range_type",
|
||||
type: "selection",
|
||||
selection: [
|
||||
["days", _lt("Days")],
|
||||
["weeks", _lt("Weeks")],
|
||||
["months", _lt("Months")],
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "activity_user_type",
|
||||
type: "selection",
|
||||
selection: [
|
||||
["specific", _lt("Specific User")],
|
||||
["generic", _lt("Generic User")],
|
||||
],
|
||||
},
|
||||
{ name: "activity_user_id", type: "many2one" },
|
||||
{ name: "activity_user_field_name", type: "char" },
|
||||
],
|
||||
};
|
||||
|
||||
registry.category("fields").add("base_automation_actions_one2many", actionsOne2ManyField);
|
42
static/src/base_automation_actions_one2many_field.xml
Normal file
42
static/src/base_automation_actions_one2many_field.xml
Normal file
@ -0,0 +1,42 @@
|
||||
<?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"
|
||||
t-att-title="getActionType(action)"
|
||||
class="fa"
|
||||
t-att-class="{
|
||||
'code': 'fa-file-code-o',
|
||||
'object_create': 'fa-edit',
|
||||
'object_write': 'fa-refresh',
|
||||
'multi': 'fa-list-ul',
|
||||
'mail_post': 'fa-envelope',
|
||||
'followers': 'fa-user-o',
|
||||
'remove_followers': 'fa-user-times',
|
||||
'next_activity': 'fa-clock-o',
|
||||
'sms': 'fa-comments-o',
|
||||
}[action.data.state]"
|
||||
/>
|
||||
<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">
|
||||
<t t-out="moreText"/>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
58
static/src/base_automation_error_dialog.js
Normal file
58
static/src/base_automation_error_dialog.js
Normal file
@ -0,0 +1,58 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import { RPCErrorDialog } from "@web/core/errors/error_dialogs";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
|
||||
export class BaseAutomationErrorDialog extends RPCErrorDialog {
|
||||
setup() {
|
||||
super.setup(...arguments);
|
||||
const { id, name } = this.props.data.context.base_automation;
|
||||
this.automationId = id;
|
||||
this.automationName = name;
|
||||
this.isUserAdmin = useService("user").isAdmin;
|
||||
this.actionService = useService("action");
|
||||
this.orm = useService("orm");
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Handlers
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* 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 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 automation rule.
|
||||
* Then, we redirect the user to the automation rule form.
|
||||
*
|
||||
* @private
|
||||
* @param {MouseEvent} ev
|
||||
*/
|
||||
editAutomation(ev) {
|
||||
this.actionService.doAction({
|
||||
name: "Automation Rules",
|
||||
res_model: "base.automation",
|
||||
res_id: this.automationId,
|
||||
views: [[false, "form"]],
|
||||
type: "ir.actions.act_window",
|
||||
view_mode: "form",
|
||||
target: "new",
|
||||
});
|
||||
this.props.close();
|
||||
}
|
||||
}
|
||||
|
||||
BaseAutomationErrorDialog.template = "base_automation.ErrorDialog";
|
||||
|
||||
registry.category("error_dialogs").add("base_automation", BaseAutomationErrorDialog);
|
34
static/src/base_automation_error_dialog.xml
Normal file
34
static/src/base_automation_error_dialog.xml
Normal file
@ -0,0 +1,34 @@
|
||||
<?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="inside">
|
||||
<p>
|
||||
The error occurred during the execution of the automation rule
|
||||
"<t t-esc="actionName"/>"
|
||||
(ID: <t t-esc="actionId"/>).
|
||||
<br/>
|
||||
</p>
|
||||
<p t-if="isUserAdmin">
|
||||
You can disable this automation rule or edit it to solve the issue.<br/>
|
||||
Disabling this automation rule will enable you to continue your workflow
|
||||
but any data created after this could potentially be corrupted,
|
||||
as you are effectively disabling a customization that may set
|
||||
important and/or required fields.
|
||||
</p>
|
||||
<p t-else="">
|
||||
You can ask an administrator to disable or correct this automation rule.
|
||||
</p>
|
||||
</xpath>
|
||||
<xpath expr="//div[@role='alert']//button" position="after">
|
||||
<t t-if="isUserAdmin">
|
||||
<button class="btn btn-secondary mt4 o_disable_action_button me-3" t-on-click.prevent="disableAction">
|
||||
<i class="fa fa-ban mr8"/>Disable Automation Rule
|
||||
</button>
|
||||
<button class="btn btn-secondary mt4 o_edit_action_button" t-on-click.prevent="editAction">
|
||||
<i class="fa fa-edit mr8"/>Edit Automation Rule
|
||||
</button>
|
||||
</t>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
54
static/src/base_automation_trigger_reference_field.js
Normal file
54
static/src/base_automation_trigger_reference_field.js
Normal file
@ -0,0 +1,54 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import { Component, xml } from "@odoo/owl";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { Many2OneField, many2OneField } from "@web/views/fields/many2one/many2one_field";
|
||||
|
||||
export class TriggerReferenceField extends Component {
|
||||
static components = { Many2OneField };
|
||||
static props = { ...Many2OneField.props };
|
||||
static template = xml`<Many2OneField t-props="m2oProps" />`;
|
||||
|
||||
get m2oProps() {
|
||||
return {
|
||||
...this.props,
|
||||
relation: this.m2oRelation,
|
||||
value: this.m2oValue,
|
||||
update: this.updateM2O.bind(this),
|
||||
canCreate: false,
|
||||
canCreateEdit: false,
|
||||
canOpen: false,
|
||||
canQuickCreate: false,
|
||||
};
|
||||
}
|
||||
|
||||
get m2oRelation() {
|
||||
return this.props.record.data.trg_field_ref_model_name;
|
||||
}
|
||||
|
||||
get m2oValue() {
|
||||
if (!this.value) {
|
||||
return null;
|
||||
}
|
||||
const displayName = this.props.record.data.trg_field_ref_display_name;
|
||||
return [this.value, displayName];
|
||||
}
|
||||
|
||||
get value() {
|
||||
return this.props.record.data[this.props.name];
|
||||
}
|
||||
|
||||
updateM2O(data) {
|
||||
const value = data[this.props.name];
|
||||
const resId = value && value[0];
|
||||
this.props.record.update({ [this.props.name]: resId });
|
||||
}
|
||||
}
|
||||
|
||||
export const triggerReferenceField = {
|
||||
supportedTypes: ["char"],
|
||||
component: TriggerReferenceField,
|
||||
supportedOptions: many2OneField.supportedOptions,
|
||||
extractProps: many2OneField.extractProps,
|
||||
};
|
||||
registry.category("fields").add("base_automation_trigger_reference", triggerReferenceField);
|
124
static/src/base_automation_trigger_selection_field.js
Normal file
124
static/src/base_automation_trigger_selection_field.js
Normal file
@ -0,0 +1,124 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import { useState } from "@odoo/owl";
|
||||
import { _lt, _t } from "@web/core/l10n/translation";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { useRecordObserver } from "@web/model/relational_model/utils";
|
||||
import { selectionField, SelectionField } from "@web/views/fields/selection/selection_field";
|
||||
import { TRIGGER_FILTERS } from "./utils";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
|
||||
const OPT_GROUPS = [
|
||||
{
|
||||
group: { sequence: 10, key: "values", name: _lt("Values Updated") },
|
||||
triggers: [
|
||||
"on_stage_set",
|
||||
"on_user_set",
|
||||
"on_tag_set",
|
||||
"on_state_set",
|
||||
"on_priority_set",
|
||||
"on_archive",
|
||||
"on_unarchive",
|
||||
],
|
||||
},
|
||||
{
|
||||
group: { sequence: 30, key: "timing", name: _lt("Timing Conditions") },
|
||||
triggers: ["on_time", "on_time_created", "on_time_updated"],
|
||||
},
|
||||
{
|
||||
group: { sequence: 40, key: "custom", name: _lt("Custom") },
|
||||
triggers: ["on_create_or_write", "on_unlink", "on_change"],
|
||||
},
|
||||
{
|
||||
group: { sequence: 50, key: "external", name: _lt("External") },
|
||||
triggers: ["on_webhook"],
|
||||
},
|
||||
{
|
||||
group: { sequence: 20, key: "mail", name: _t("Email Events") },
|
||||
triggers: ["on_message_sent", "on_message_received"],
|
||||
},
|
||||
{
|
||||
group: { sequence: 60, key: "deprecated", name: _lt("Deprecated (do not use)") },
|
||||
triggers: ["on_create", "on_write"],
|
||||
},
|
||||
];
|
||||
|
||||
function computeDerivedOptions(options, fields, currentSelection, { excludeGroups = [] } = {}) {
|
||||
// filter options to display, derived from the current value and the model fields
|
||||
const derivedOptions = [];
|
||||
for (const [value, label] of options) {
|
||||
const { group, triggers } = OPT_GROUPS.find((g) => g.triggers.includes(value));
|
||||
if (
|
||||
(group.key === "deprecated" && !triggers.includes(currentSelection)) ||
|
||||
excludeGroups.includes(group.key)
|
||||
) {
|
||||
// skip deprecated triggers if the current value is not deprecated
|
||||
continue;
|
||||
}
|
||||
const filterFn = TRIGGER_FILTERS[value];
|
||||
if (filterFn) {
|
||||
const triggerFields = fields.filter(filterFn);
|
||||
if (triggerFields.length === 0) {
|
||||
// skip triggers that don't have any corresponding field
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
const option = { group, value, label };
|
||||
derivedOptions.push(option);
|
||||
}
|
||||
return derivedOptions;
|
||||
}
|
||||
|
||||
export class TriggerSelectionField extends SelectionField {
|
||||
static template = "base_automation.TriggerSelectionField";
|
||||
setup() {
|
||||
super.setup();
|
||||
this.groupedOptions = useState([]);
|
||||
|
||||
const orm = useService("orm");
|
||||
let lastRelatedModelId;
|
||||
let relatedModelFields;
|
||||
useRecordObserver(async (record) => {
|
||||
const { data, fields } = record;
|
||||
const modelId = data.model_id?.[0];
|
||||
if (lastRelatedModelId !== modelId) {
|
||||
lastRelatedModelId = modelId;
|
||||
relatedModelFields = await orm.searchRead(
|
||||
"ir.model.fields",
|
||||
[["model_id", "=", modelId]],
|
||||
["field_description", "name", "ttype", "relation"]
|
||||
);
|
||||
}
|
||||
|
||||
// first, compute the derived options
|
||||
const derivedOptions = computeDerivedOptions(
|
||||
fields[this.props.name].selection,
|
||||
relatedModelFields,
|
||||
data[this.props.name],
|
||||
{ excludeGroups: data.model_is_mail_thread ? [] : ["mail"] }
|
||||
);
|
||||
|
||||
// then group and sort them
|
||||
this.groupedOptions.length = 0;
|
||||
for (const option of derivedOptions) {
|
||||
const group = this.groupedOptions.find((g) => g.key === option.group.key) ?? {
|
||||
...option.group,
|
||||
options: [],
|
||||
};
|
||||
group.options.push(option);
|
||||
if (!this.groupedOptions.includes(group)) {
|
||||
this.groupedOptions.push(group);
|
||||
}
|
||||
}
|
||||
this.groupedOptions.sort((a, b) => a.sequence - b.sequence);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export const triggerSelectionField = {
|
||||
...selectionField,
|
||||
component: TriggerSelectionField,
|
||||
fieldDependencies: [{ name: "model_is_mail_thread", type: "boolean" }],
|
||||
};
|
||||
registry.category("fields").add("base_automation_trigger_selection", triggerSelectionField);
|
18
static/src/base_automation_trigger_selection_field.xml
Normal file
18
static/src/base_automation_trigger_selection_field.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<templates>
|
||||
<t t-name="base_automation.TriggerSelectionField" t-inherit="web.SelectionField" t-inherit-mode="primary">
|
||||
<xpath expr="//t[@t-foreach='options']" position="replace">
|
||||
<t t-foreach="groupedOptions" t-as="group" t-key="group.key">
|
||||
<optgroup t-att-label="group.name">
|
||||
<t t-foreach="group.options" t-as="option" t-key="option.value">
|
||||
<option
|
||||
t-att-selected="option.value === value"
|
||||
t-att-value="stringify(option.value)"
|
||||
t-esc="option.label"/>
|
||||
</t>
|
||||
</optgroup>
|
||||
</t>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
96
static/src/kanban_header_patch.js
Normal file
96
static/src/kanban_header_patch.js
Normal file
@ -0,0 +1,96 @@
|
||||
/* @odoo-module */
|
||||
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
import { KanbanHeader } from "@web/views/kanban/kanban_header";
|
||||
import { TRIGGER_FILTERS } from "./utils";
|
||||
|
||||
const SUPPORTED_TRIGGERS = [
|
||||
"on_stage_set",
|
||||
"on_tag_set",
|
||||
"on_state_set",
|
||||
"on_priority_set",
|
||||
"on_user_set",
|
||||
"on_archive",
|
||||
];
|
||||
|
||||
function enrichContext(context, group) {
|
||||
const { displayName, groupByField, value } = group;
|
||||
const { name, relation, type: ttype } = groupByField;
|
||||
for (const trigger of SUPPORTED_TRIGGERS) {
|
||||
if (!TRIGGER_FILTERS[trigger]({ name, relation, ttype })) {
|
||||
continue;
|
||||
}
|
||||
switch (trigger) {
|
||||
case "on_stage_set":
|
||||
return {
|
||||
...context,
|
||||
default_trigger: trigger,
|
||||
default_name: _t('Stage is set to "%s"', displayName),
|
||||
default_trg_field_ref: value,
|
||||
};
|
||||
case "on_tag_set":
|
||||
return {
|
||||
...context,
|
||||
default_trigger: trigger,
|
||||
default_name: _t('"%s" tag is added', displayName),
|
||||
default_trg_field_ref: value,
|
||||
};
|
||||
default:
|
||||
return { ...context, default_trigger: trigger };
|
||||
}
|
||||
}
|
||||
|
||||
// Default trigger
|
||||
return { ...context, default_trigger: "on_create_or_write" };
|
||||
}
|
||||
|
||||
patch(KanbanHeader.prototype, {
|
||||
setup() {
|
||||
super.setup();
|
||||
this.action = useService("action");
|
||||
this.user = useService("user");
|
||||
},
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
get permissions() {
|
||||
const permissions = super.permissions;
|
||||
Object.defineProperty(permissions, "canEditAutomations", {
|
||||
get: () => this.user.isAdmin,
|
||||
configurable: true,
|
||||
});
|
||||
return permissions;
|
||||
},
|
||||
|
||||
async openAutomations() {
|
||||
return this._openAutomations();
|
||||
},
|
||||
|
||||
async _openAutomations() {
|
||||
const domain = [["model", "=", this.props.list.resModel]];
|
||||
const modelId = await this.orm.search("ir.model", domain, { limit: 1 });
|
||||
const context = {
|
||||
active_test: false,
|
||||
default_model_id: modelId[0],
|
||||
search_default_model_id: modelId[0],
|
||||
};
|
||||
this.action.doAction("base_automation.base_automation_act", {
|
||||
additionalContext: enrichContext(context, this.group),
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
registry.category("kanban_header_config_items").add(
|
||||
"open_automations",
|
||||
{
|
||||
label: _t("Automations"),
|
||||
method: "openAutomations",
|
||||
isVisible: ({ permissions }) => permissions.canEditAutomations,
|
||||
class: "o_column_automations",
|
||||
},
|
||||
{ sequence: 25, force: true }
|
||||
);
|
25
static/src/utils.js
Normal file
25
static/src/utils.js
Normal file
@ -0,0 +1,25 @@
|
||||
/** @odoo-module */
|
||||
|
||||
export const TRIGGER_FILTERS = {
|
||||
on_create_or_write: (f) => true,
|
||||
on_create: (f) => true,
|
||||
on_write: (f) => true,
|
||||
on_change: (f) => true,
|
||||
on_unlink: (f) => true,
|
||||
on_time: (f) => true,
|
||||
on_time_created: (f) => f.ttype === "datetime" && f.name === "create_date",
|
||||
on_time_updated: (f) => f.ttype === "datetime" && f.name === "write_date",
|
||||
on_stage_set: (f) =>
|
||||
f.ttype === "many2one" && ["stage_id", "x_studio_stage_id"].includes(f.name),
|
||||
on_user_set: (f) =>
|
||||
f.relation === "res.users" &&
|
||||
["many2one", "many2many"].includes(f.ttype) &&
|
||||
["user_id", "user_ids", "x_studio_user_id", "x_studio_user_ids"].includes(f.name),
|
||||
on_tag_set: (f) => f.ttype === "many2many" && ["tag_ids", "x_studio_tag_ids"].includes(f.name),
|
||||
on_state_set: (f) => f.ttype === "selection" && ["state", "x_studio_state"].includes(f.name),
|
||||
on_priority_set: (f) =>
|
||||
f.ttype === "selection" && ["priority", "x_studio_priority"].includes(f.name),
|
||||
on_archive: (f) => f.ttype === "boolean" && ["active", "x_active"].includes(f.name),
|
||||
on_unarchive: (f) => f.ttype === "boolean" && ["active", "x_active"].includes(f.name),
|
||||
on_webhook: (f) => true,
|
||||
};
|
122
static/tests/base_automation_error_dialog.js
Normal file
122
static/tests/base_automation_error_dialog.js
Normal file
@ -0,0 +1,122 @@
|
||||
/** @odoo-modules */
|
||||
|
||||
import { registerCleanup } from "@web/../tests/helpers/cleanup";
|
||||
import { makeTestEnv } from "@web/../tests/helpers/mock_env";
|
||||
import { makeServerError } from "@web/../tests/helpers/mock_server";
|
||||
import {
|
||||
makeFakeLocalizationService,
|
||||
makeFakeRPCService,
|
||||
} from "@web/../tests/helpers/mock_services";
|
||||
import { browser } from "@web/core/browser/browser";
|
||||
import { dialogService } from "@web/core/dialog/dialog_service";
|
||||
import { errorService } from "@web/core/errors/error_service";
|
||||
import { hotkeyService } from "@web/core/hotkeys/hotkey_service";
|
||||
import { MainComponentsContainer } from "@web/core/main_components_container";
|
||||
import { notificationService } from "@web/core/notifications/notification_service";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { uiService } from "@web/core/ui/ui_service";
|
||||
import { getFixture, mount, nextTick, patchWithCleanup } from "@web/../tests/helpers/utils";
|
||||
import { BaseAutomationErrorDialog } from "@base_automation/base_automation_error_dialog";
|
||||
import { toRaw } from "@odoo/owl";
|
||||
|
||||
const serviceRegistry = registry.category("services");
|
||||
|
||||
let target;
|
||||
|
||||
QUnit.module("base_automation", {}, function () {
|
||||
let unhandledRejectionCb;
|
||||
QUnit.module("Error Dialog", {
|
||||
async beforeEach() {
|
||||
serviceRegistry.add("dialog", dialogService);
|
||||
serviceRegistry.add("ui", uiService);
|
||||
serviceRegistry.add("error", errorService);
|
||||
serviceRegistry.add("hotkey", hotkeyService);
|
||||
serviceRegistry.add("localization", makeFakeLocalizationService());
|
||||
serviceRegistry.add("action", { start: () => {} });
|
||||
serviceRegistry.add("orm", { start: () => {} });
|
||||
serviceRegistry.add("user", { start: () => ({ isAdmin: true }) });
|
||||
registry.category("error_dialogs").add("base_automation", BaseAutomationErrorDialog);
|
||||
// Both of these are unused but required for the error service to call error handlers
|
||||
serviceRegistry.add("notification", notificationService);
|
||||
serviceRegistry.add("rpc", makeFakeRPCService());
|
||||
const windowAddEventListener = browser.addEventListener;
|
||||
browser.addEventListener = (type, cb) => {
|
||||
if (type === "unhandledrejection") {
|
||||
unhandledRejectionCb = cb;
|
||||
}
|
||||
};
|
||||
registerCleanup(() => {
|
||||
browser.addEventListener = windowAddEventListener;
|
||||
});
|
||||
target = getFixture();
|
||||
},
|
||||
});
|
||||
|
||||
QUnit.test("Error due to an automation rule", async function (assert) {
|
||||
assert.expect(4);
|
||||
|
||||
const errorContext = {
|
||||
exception_class: "base_automation",
|
||||
base_automation: {
|
||||
id: 1,
|
||||
name: "Test base automation error dialog",
|
||||
},
|
||||
};
|
||||
|
||||
const error = makeServerError({
|
||||
subType: "Odoo Client Error",
|
||||
message: "Message",
|
||||
context: errorContext,
|
||||
});
|
||||
|
||||
patchWithCleanup(BaseAutomationErrorDialog.prototype, {
|
||||
setup() {
|
||||
assert.equal(
|
||||
toRaw(this.props.data.context),
|
||||
errorContext,
|
||||
"Received the correct error context"
|
||||
);
|
||||
super.setup();
|
||||
},
|
||||
});
|
||||
|
||||
const env = await makeTestEnv();
|
||||
await mount(MainComponentsContainer, target, { env });
|
||||
|
||||
const errorEvent = new PromiseRejectionEvent("error", {
|
||||
reason: error,
|
||||
promise: null,
|
||||
cancelable: true,
|
||||
bubbles: true,
|
||||
});
|
||||
await unhandledRejectionCb(errorEvent);
|
||||
await nextTick();
|
||||
assert.containsOnce(target, ".modal .fa-clipboard");
|
||||
assert.containsOnce(target, ".modal .o_disable_action_button");
|
||||
assert.containsOnce(target, ".modal .o_edit_action_button");
|
||||
});
|
||||
|
||||
QUnit.test("Error not due to an automation rule", async function (assert) {
|
||||
assert.expect(3);
|
||||
|
||||
const error = makeServerError({
|
||||
subType: "Odoo Client Error",
|
||||
message: "Message",
|
||||
});
|
||||
|
||||
const env = await makeTestEnv();
|
||||
await mount(MainComponentsContainer, target, { env });
|
||||
|
||||
const errorEvent = new PromiseRejectionEvent("error", {
|
||||
reason: error,
|
||||
promise: null,
|
||||
cancelable: true,
|
||||
bubbles: true,
|
||||
});
|
||||
await unhandledRejectionCb(errorEvent);
|
||||
await nextTick();
|
||||
assert.containsOnce(target, ".modal .fa-clipboard");
|
||||
assert.containsNone(target, ".modal .o_disable_action_button");
|
||||
assert.containsNone(target, ".modal .o_edit_action_button");
|
||||
});
|
||||
});
|
152
static/tests/kanban_header_patch_tests.js
Normal file
152
static/tests/kanban_header_patch_tests.js
Normal file
@ -0,0 +1,152 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import { click, getFixture } from "@web/../tests/helpers/utils";
|
||||
import { makeView, setupViewRegistries } from "@web/../tests/views/helpers";
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
function getColumn(groupIndex = 0, ignoreFolded = false) {
|
||||
let selector = ".o_kanban_group";
|
||||
if (ignoreFolded) {
|
||||
selector += ":not(.o_column_folded)";
|
||||
}
|
||||
return target.querySelectorAll(selector)[groupIndex];
|
||||
}
|
||||
|
||||
async function toggleColumnActions(columnIndex) {
|
||||
const group = getColumn(columnIndex);
|
||||
await click(group, ".o_kanban_config .dropdown-toggle");
|
||||
const buttons = group.querySelectorAll(".o_kanban_config .dropdown-menu .dropdown-item");
|
||||
return (buttonText) => {
|
||||
const re = new RegExp(`\\b${buttonText}\\b`, "i");
|
||||
const button = [...buttons].find((b) => re.test(b.innerText));
|
||||
return click(button);
|
||||
};
|
||||
}
|
||||
|
||||
let target;
|
||||
let serverData;
|
||||
|
||||
QUnit.module("BaseAutomation", {}, function () {
|
||||
QUnit.module("BaseAutomationKanbanHeader", (hooks) => {
|
||||
hooks.beforeEach(() => {
|
||||
target = getFixture();
|
||||
serverData = {
|
||||
models: {
|
||||
partner: {
|
||||
fields: {
|
||||
foo: { string: "Foo", type: "char" },
|
||||
bar: { string: "Bar", type: "boolean" },
|
||||
},
|
||||
records: [
|
||||
{
|
||||
id: 1,
|
||||
bar: true,
|
||||
foo: "yop",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
bar: true,
|
||||
foo: "blip",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
bar: true,
|
||||
foo: "gnap",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
bar: false,
|
||||
foo: "blip",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
};
|
||||
setupViewRegistries();
|
||||
});
|
||||
|
||||
QUnit.test("basic grouped rendering with automations", async (assert) => {
|
||||
const actionService = {
|
||||
start() {
|
||||
return {
|
||||
doAction: (action, options) => {
|
||||
assert.step(action);
|
||||
assert.deepEqual(options, {
|
||||
additionalContext: {
|
||||
active_test: false,
|
||||
search_default_model_id: 42,
|
||||
default_model_id: 42,
|
||||
default_trigger: "on_create_or_write",
|
||||
},
|
||||
});
|
||||
},
|
||||
};
|
||||
},
|
||||
};
|
||||
registry.category("services").add("action", actionService, { force: true });
|
||||
await makeView({
|
||||
type: "kanban",
|
||||
resModel: "partner",
|
||||
serverData: serverData,
|
||||
arch: `
|
||||
<kanban class="o_kanban_test">
|
||||
<field name="bar" />
|
||||
<templates>
|
||||
<t t-name="kanban-box">
|
||||
<div>
|
||||
<field name="foo" />
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
</kanban>`,
|
||||
groupBy: ["bar"],
|
||||
mockRPC: (route, { args, kwargs }) => {
|
||||
if (route === "/web/dataset/call_kw/ir.model/search") {
|
||||
assert.deepEqual(args, [[["model", "=", "partner"]]]);
|
||||
assert.strictEqual(kwargs.limit, 1);
|
||||
return [42]; // model id
|
||||
}
|
||||
},
|
||||
});
|
||||
assert.hasClass(target.querySelector(".o_kanban_view"), "o_kanban_test");
|
||||
assert.hasClass(target.querySelector(".o_kanban_renderer"), "o_kanban_grouped");
|
||||
assert.containsN(target, ".o_kanban_group", 2);
|
||||
assert.containsOnce(target, ".o_kanban_group:first-child .o_kanban_record");
|
||||
assert.containsN(target, ".o_kanban_group:nth-child(2) .o_kanban_record", 3);
|
||||
|
||||
await toggleColumnActions(0);
|
||||
|
||||
// check available actions in kanban header's config dropdown
|
||||
assert.containsOnce(
|
||||
target,
|
||||
".o_kanban_header:first-child .o_kanban_config .o_kanban_toggle_fold"
|
||||
);
|
||||
assert.containsOnce(
|
||||
target,
|
||||
".o_kanban_header:first-child .o_kanban_config .o_column_automations"
|
||||
);
|
||||
assert.containsNone(
|
||||
target,
|
||||
".o_kanban_header:first-child .o_kanban_config .o_column_edit"
|
||||
);
|
||||
assert.containsNone(
|
||||
target,
|
||||
".o_kanban_header:first-child .o_kanban_config .o_column_delete"
|
||||
);
|
||||
assert.containsNone(
|
||||
target,
|
||||
".o_kanban_header:first-child .o_kanban_config .o_column_archive_records"
|
||||
);
|
||||
assert.containsNone(
|
||||
target,
|
||||
".o_kanban_header:first-child .o_kanban_config .o_column_unarchive_records"
|
||||
);
|
||||
assert.verifySteps([]);
|
||||
await click(
|
||||
target,
|
||||
".o_kanban_header:first-child .o_kanban_config .o_column_automations"
|
||||
);
|
||||
assert.verifySteps(["base_automation.base_automation_act"]);
|
||||
});
|
||||
});
|
||||
});
|
5
tests/__init__.py
Normal file
5
tests/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_automation
|
||||
from . import test_mail_composer
|
114
tests/test_automation.py
Normal file
114
tests/test_automation.py
Normal file
@ -0,0 +1,114 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.base.tests.common import TransactionCaseWithUserDemo
|
||||
from odoo import Command
|
||||
|
||||
import odoo.tests
|
||||
|
||||
|
||||
@odoo.tests.tagged('post_install', '-at_install')
|
||||
class TestAutomation(TransactionCaseWithUserDemo):
|
||||
|
||||
def test_01_on_create_or_write(self):
|
||||
""" Simple on_create with admin user """
|
||||
model = self.env.ref("base.model_res_partner")
|
||||
automation = self.env["base.automation"].create({
|
||||
"name": "Force Archived Contacts",
|
||||
"trigger": "on_create_or_write",
|
||||
"model_id": model.id,
|
||||
"trigger_field_ids": [(6, 0, [
|
||||
self.env.ref("base.field_res_partner__name").id,
|
||||
self.env.ref("base.field_res_partner__vat").id,
|
||||
])],
|
||||
})
|
||||
|
||||
# trg_field should only be set when trigger is 'on_stage_set' or 'on_tag_set'
|
||||
self.assertFalse(automation.trg_field_ref)
|
||||
self.assertFalse(automation.trg_field_ref_display_name)
|
||||
self.assertFalse(automation.trg_field_ref_model_name)
|
||||
|
||||
action = self.env["ir.actions.server"].create({
|
||||
"name": "Set Active To False",
|
||||
"base_automation_id": automation.id,
|
||||
"state": "object_write",
|
||||
"update_path": "active",
|
||||
"update_boolean_value": "false",
|
||||
"model_id": model.id,
|
||||
})
|
||||
automation.write({"action_server_ids": [Command.link(action.id)]})
|
||||
|
||||
# verify the partner can be created and the action still runs
|
||||
bilbo = self.env["res.partner"].create({"name": "Bilbo Baggins"})
|
||||
self.assertFalse(bilbo.active)
|
||||
|
||||
# verify the partner can be updated and the action still runs
|
||||
bilbo.active = True
|
||||
bilbo.name = "Bilbo"
|
||||
self.assertFalse(bilbo.active)
|
||||
|
||||
def test_02_on_create_or_write_restricted(self):
|
||||
""" on_create action with low portal user """
|
||||
model = self.env.ref("base.model_ir_filters")
|
||||
automation = self.env["base.automation"].create({
|
||||
"name": "Force Archived Filters",
|
||||
"trigger": "on_create_or_write",
|
||||
"model_id": model.id,
|
||||
"trigger_field_ids": [(6, 0, [self.env.ref("base.field_ir_filters__name").id])],
|
||||
})
|
||||
action = self.env["ir.actions.server"].create({
|
||||
"name": "Set Active To False",
|
||||
"base_automation_id": automation.id,
|
||||
"model_id": model.id,
|
||||
"state": "object_write",
|
||||
"update_path": "active",
|
||||
"update_boolean_value": "false",
|
||||
})
|
||||
action.flush_recordset()
|
||||
automation.write({"action_server_ids": [Command.link(action.id)]})
|
||||
# action cached was cached with admin, force CacheMiss
|
||||
automation.env.clear()
|
||||
|
||||
self_portal = self.env["ir.filters"].with_user(self.user_demo.id)
|
||||
# verify the portal user can create ir.filters but can not read base.automation
|
||||
self.assertTrue(self_portal.env["ir.filters"].check_access_rights("create", raise_exception=False))
|
||||
self.assertFalse(self_portal.env["base.automation"].check_access_rights("read", raise_exception=False))
|
||||
|
||||
# verify the filter can be created and the action still runs
|
||||
filters = self_portal.create({
|
||||
"name": "Where is Bilbo?",
|
||||
"domain": "[('name', 'ilike', 'bilbo')]",
|
||||
"model_id": "res.partner",
|
||||
})
|
||||
self.assertFalse(filters.active)
|
||||
|
||||
# verify the filter can be updated and the action still runs
|
||||
filters.active = True
|
||||
filters.name = "Where is Bilbo Baggins?"
|
||||
self.assertFalse(filters.active)
|
||||
|
||||
def test_03_on_change_restricted(self):
|
||||
""" on_create action with low portal user """
|
||||
model = self.env.ref("base.model_ir_filters")
|
||||
automation = self.env["base.automation"].create({
|
||||
"name": "Force Archived Filters",
|
||||
"trigger": "on_change",
|
||||
"model_id": model.id,
|
||||
"on_change_field_ids": [(6, 0, [self.env.ref("base.field_ir_filters__name").id])],
|
||||
})
|
||||
action = self.env["ir.actions.server"].create({
|
||||
"name": "Set Active To False",
|
||||
"base_automation_id": automation.id,
|
||||
"model_id": model.id,
|
||||
"state": "code",
|
||||
"code": """action = {'value': {'active': False}}""",
|
||||
})
|
||||
automation.write({"action_server_ids": [Command.link(action.id)]})
|
||||
# action cached was cached with admin, force CacheMiss
|
||||
automation.env.clear()
|
||||
|
||||
self_portal = self.env["ir.filters"].with_user(self.user_demo.id)
|
||||
|
||||
# simulate a onchange call on name
|
||||
result = self_portal.onchange({}, [], {"name": {}, "active": {}})
|
||||
self.assertEqual(result["value"]["active"], False)
|
47
tests/test_mail_composer.py
Normal file
47
tests/test_mail_composer.py
Normal file
@ -0,0 +1,47 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.mail.tests.common import MailCommon
|
||||
from odoo.tests.common import tagged, HttpCase
|
||||
|
||||
|
||||
@tagged('-at_install', 'post_install', 'mail_composer')
|
||||
class TestMailFullComposer(MailCommon, HttpCase):
|
||||
|
||||
def test_mail_composer_test_tour(self):
|
||||
self.env['mail.template'].create({
|
||||
'auto_delete': True,
|
||||
'lang': '{{ object.lang }}',
|
||||
'model_id': self.env['ir.model']._get_id('res.partner'),
|
||||
'name': 'Test template',
|
||||
'partner_to': '{{ object.id }}',
|
||||
})
|
||||
self.user_employee.write({
|
||||
'groups_id': [(4, self.env.ref('base.group_partner_manager').id)],
|
||||
})
|
||||
|
||||
automation = self.env['base.automation'].create({
|
||||
'name': 'Test',
|
||||
'active': True,
|
||||
'trigger': 'on_change',
|
||||
'on_change_field_ids': (4, self.ref('mail.field_mail_compose_message__template_id'),),
|
||||
'model_id': self.env.ref('mail.model_mail_compose_message').id,
|
||||
})
|
||||
server_action = self.env['ir.actions.server'].create({
|
||||
'name': 'Test',
|
||||
'base_automation_id': automation.id,
|
||||
'state': 'code',
|
||||
'model_id': self.env.ref('mail.model_mail_compose_message').id,
|
||||
})
|
||||
automation.write({'action_server_ids': [(4, server_action.id)]})
|
||||
partner = self.env["res.partner"].create({"name": "Jane", "email": "jane@example.com"})
|
||||
user = self.env["res.users"].create({"name": "Not A Demo User", "login": "nadu"})
|
||||
with self.mock_mail_app():
|
||||
self.start_tour(
|
||||
f"/web#id={partner.id}&model=res.partner",
|
||||
"mail/static/tests/tours/mail_composer_test_tour.js",
|
||||
login=self.user_employee.login
|
||||
)
|
||||
message = self._new_msgs.filtered(lambda message: message.author_id == self.user_employee.partner_id)
|
||||
self.assertEqual(len(message), 1)
|
||||
self.assertIn(user.partner_id, message.partner_ids)
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user