Merge remote-tracking branch 'origin/develop' into develop
						commit
						e9ec16c6bc
					
				|  | @ -0,0 +1,78 @@ | ||||||
|  | .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||||||
|  |     :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html | ||||||
|  |     :alt: License: AGPL-3 | ||||||
|  | 
 | ||||||
|  | ================================= | ||||||
|  | Audit Log - Track user operations | ||||||
|  | ================================= | ||||||
|  | 
 | ||||||
|  | This module allows the administrator to log user operations performed on data | ||||||
|  | models such as ``create``, ``read``, ``write`` and ``delete``. | ||||||
|  | 
 | ||||||
|  | Usage | ||||||
|  | ===== | ||||||
|  | 
 | ||||||
|  | Go to `Settings / Technical / Audit / Rules` to subscribe rules. A rule defines | ||||||
|  | which operations to log for a given data model. | ||||||
|  | 
 | ||||||
|  | .. image:: /auditlog/static/description/rule.png | ||||||
|  | 
 | ||||||
|  | Then, check logs in the `Settings / Technical / Audit / Logs` menu. You can | ||||||
|  | group them by user sessions, date, data model or HTTP requests: | ||||||
|  | 
 | ||||||
|  | .. image:: /auditlog/static/description/logs.png | ||||||
|  | 
 | ||||||
|  | Get the details: | ||||||
|  | 
 | ||||||
|  | .. image:: /auditlog/static/description/log.png | ||||||
|  | 
 | ||||||
|  | A scheduled action exists to delete logs older than 6 months (180 days) | ||||||
|  | automatically but is not enabled by default. | ||||||
|  | To activate it and/or change the delay, go to the | ||||||
|  | `Configuration / Technical / Automation / Scheduled Actions` menu and edit the | ||||||
|  | `Auto-vacuum audit logs` entry: | ||||||
|  | 
 | ||||||
|  | .. image:: /auditlog/static/description/autovacuum.png | ||||||
|  | 
 | ||||||
|  | Known issues / Roadmap | ||||||
|  | ====================== | ||||||
|  | 
 | ||||||
|  |  * log only operations triggered by some users (currently it logs all users) | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | Bug Tracker | ||||||
|  | =========== | ||||||
|  | 
 | ||||||
|  | Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_. | ||||||
|  | In case of trouble, please check there if your issue has already been reported. | ||||||
|  | If you spotted it first, help us smashing it by providing a detailed and welcomed feedback | ||||||
|  | `here <https://github.com/OCA/server-tools/issues/new?body=module:%20auditlog%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | Credits | ||||||
|  | ======= | ||||||
|  | 
 | ||||||
|  | Contributors | ||||||
|  | ------------ | ||||||
|  | 
 | ||||||
|  | * Sebastien Alix <sebastien.alix@osiell.com> | ||||||
|  | * Holger Brunn <hbrunn@therp.nl> | ||||||
|  | * Holden Rehg <holdenrehg@gmail.com> | ||||||
|  | 
 | ||||||
|  | Images | ||||||
|  | ------ | ||||||
|  | 
 | ||||||
|  | * Icon: built with different icons from the `Oxygen theme <https://en.wikipedia.org/wiki/Oxygen_Project>`_ (LGPL) | ||||||
|  | 
 | ||||||
|  | Maintainer | ||||||
|  | ---------- | ||||||
|  | 
 | ||||||
|  | .. image:: https://odoo-community.org/logo.png | ||||||
|  |    :alt: Odoo Community Association | ||||||
|  |    :target: https://odoo-community.org | ||||||
|  | 
 | ||||||
|  | This module is maintained by the OCA. | ||||||
|  | 
 | ||||||
|  | OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. | ||||||
|  | 
 | ||||||
|  | To contribute to this module, please visit https://odoo-community.org. | ||||||
|  | @ -0,0 +1,3 @@ | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from . import models | ||||||
|  | @ -0,0 +1,23 @@ | ||||||
|  | # © 2015 ABF OSIELL <https://osiell.com> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | { | ||||||
|  |     'name': "Audit Log", | ||||||
|  |     'version': "11.0.1.0.0", | ||||||
|  |     'author': "ABF OSIELL,Odoo Community Association (OCA)", | ||||||
|  |     'license': "AGPL-3", | ||||||
|  |     'website': "https://www.osiell.com", | ||||||
|  |     'category': "Tools", | ||||||
|  |     'depends': [ | ||||||
|  |         'base', | ||||||
|  |     ], | ||||||
|  |     'data': [ | ||||||
|  |         'security/ir.model.access.csv', | ||||||
|  |         'data/ir_cron.xml', | ||||||
|  |         'views/auditlog_view.xml', | ||||||
|  |         'views/http_session_view.xml', | ||||||
|  |         'views/http_request_view.xml', | ||||||
|  |     ], | ||||||
|  |     'application': True, | ||||||
|  |     'installable': True, | ||||||
|  | } | ||||||
|  | @ -0,0 +1,16 @@ | ||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <odoo noupdate="1"> | ||||||
|  | 
 | ||||||
|  |         <record id="ir_cron_auditlog_autovacuum" model="ir.cron"> | ||||||
|  |             <field name='name'>Auto-vacuum audit logs</field> | ||||||
|  |             <field name='interval_number'>1</field> | ||||||
|  |             <field name='interval_type'>days</field> | ||||||
|  |             <field name="numbercall">-1</field> | ||||||
|  |             <field name="active" eval="False"/> | ||||||
|  |             <field name="doall" eval="False"/> | ||||||
|  |             <field name="code">model.autovacuum(180)</field> | ||||||
|  |             <field name="state">code</field> | ||||||
|  |             <field name="model_id" ref="model_auditlog_autovacuum"/> | ||||||
|  |         </record> | ||||||
|  | 
 | ||||||
|  | </odoo> | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # SaFi J. <safi2266@gmail.com>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: SaFi J. <safi2266@gmail.com>, 2016\n" | ||||||
|  | "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" | ||||||
|  | "Language: ar\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " | ||||||
|  | "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "الإجراء" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "السياق" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "أنشئ بواسطة" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "أنشئ في" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "التاريخ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "الوصف" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "اسم العرض" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "مسوّدة" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "الحقل" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "تجميع حسب..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "المعرف" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "آخر تعديل في" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "آخر تحديث بواسطة" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "آخر تحديث في" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "النموذج" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "الاسم" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "النوع" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "المستخدم" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "المستخدمون" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,449 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | #	* auditlog | ||||||
|  | # | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: \n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: \n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 | ||||||
|  | #: selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 | ||||||
|  | #: selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Full log: make a diff between the data before and after the operation (log more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations (less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Select this if you want to keep track of creation on any record of the model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Select this if you want to keep track of deletion on any record of the model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Select this if you want to keep track of modification on any record of the model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Select this if you want to keep track of read/open on any record of the model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" | ||||||
|  | "Language: bg\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Създадено от" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Създадено на" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Дата" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Описание" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Име за показване" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Групиране по..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Последно обновено на" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Последно обновено от" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Последно обновено на" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Име" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Вид" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Kreirao" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Kreirano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Opis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Prikaži naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "U pripremi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupiši po..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Zadnje mijenjano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Zadnji ažurirao" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Zadnje ažurirano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Ime" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Vrsta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Korisnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-08-01 02:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-08-01 02:43+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" | ||||||
|  | "Language: 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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Context" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creat per" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creat el" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripció" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Veure el nom" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Esborrany" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Camp" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupa per..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Darrera modificació el" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Darrera Actualització per" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Darrera Actualització el" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Incidències" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nom" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipus" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Donar-se de baixa" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuari" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuaris" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Jaroslav Helemik Nemec <nemec@helemik.cz>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Jaroslav Helemik Nemec <nemec@helemik.cz>, 2016\n" | ||||||
|  | "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" | ||||||
|  | "Language: cs\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>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Vytvořil(a)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Vytvořeno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Popis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Zobrazovaný název" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Návrh" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Seskupit..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Naposled upraveno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Naposled upraveno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Naposled upraveno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Název" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Stav" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Druh" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Uživatel" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,478 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Lukáš Spurný <lukasspurny8@gmail.com>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "Last-Translator: Lukáš Spurný <lukasspurny8@gmail.com>, 2018\n" | ||||||
|  | "Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/cs_CZ/)\n" | ||||||
|  | "Language: cs_CZ\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>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Akce" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Zkontrolovat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Zkontrolován protokol - Odstranění starých protokolů" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Zkontrolovaný- protokol návštěv uživatelů HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Zkontrolovaný- protokol požadavků HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Záznam auditu - protokol" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Auditlog - detaily protokolu (pole jsou aktualizovány)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Auditlog - Pravidlo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "Auto-vakuové protokoly auditu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontext" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Vytvořil" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Vytvořeno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Popis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Zobrazit název" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Návrh" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Rychlý protokol" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Pole" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Pole byla aktualizována" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Plný protokol" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "Úplný protokol: proveďte rozdíl mezi daty před a po operaci (zaznamenávejte " | ||||||
|  | "více informací, jako jsou vypočtená pole, která byla aktualizována, ale je " | ||||||
|  | "pomalejší) Rychlý protokol: zaznamenávejte pouze změny provedené pomocí " | ||||||
|  | "operací vytváření a zápisu (méně informací, ale je rychlejší)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Skupina vytvořená..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "Kontext HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "Požadavek HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "Požadavky HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Poslední změna dne" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Naposledy aktualizováno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Poslední aktualizace dne" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Přihlásit se" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Protokol - pole je aktualizováno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Záznam vytvoří" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Záznam odstraní" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Záznamy čtení" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Záznam zapíše" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Záznamy" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Metoda" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Název" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Nová hodnota" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Nový text hodnot" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Stará hodnota" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Stará hodnota textu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Cesta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "ID zdroje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Název zdroje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "Kořenová adresa URL" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Pravidlo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Pravidla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Vyberte model, pro který chcete generovat protokol." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Tuto možnost vyberte, pokud chcete sledovat tvorbu na jakémkoli záznamu " | ||||||
|  | "modelu tohoto pravidla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Tuto možnost vyberte, pokud chcete sledovat odstranění v libovolném záznamu " | ||||||
|  | "modelu tohoto pravidla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Tuto možnost vyberte, pokud chcete sledovat změny v záznamu modelu tohoto " | ||||||
|  | "pravidla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Tuto možnost vyberte, chcete-li sledovat čtení / otevření v libovolném " | ||||||
|  | "záznamu modelu tohoto pravidla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Relace" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "ID relace" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Stát" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "odebírat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Přihlášené" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Technický název" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Na tomto modelu již bylo definováno pravidlo. Nelze definovat další: upravte " | ||||||
|  | "stávající." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Typ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Odhlásit odběr" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Uživatel" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Uživatelská relace" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Uživatelské relace" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Uživatelé" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Hodnoty" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Zobrazení protokolů" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "pokud uživatel není přidán, pak bude použitelný pro všechny uživatele" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" | ||||||
|  | "Language: da\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Oprettet af" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Oprettet den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Beskrivelse" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Vist navn" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Udkast" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "Id" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Sidst ændret den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Sidst opdateret af" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Sidst opdateret den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Navn" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Delstat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Brugere" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,479 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Rudolf Schnapka <rs@techno-flex.de>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-12-09 11:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-12-09 11:43+0000\n" | ||||||
|  | "Last-Translator: Rudolf Schnapka <rs@techno-flex.de>, 2017\n" | ||||||
|  | "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" | ||||||
|  | "Language: de\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Aktion" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Audit" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Auditlog - Alte Logs löschen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Audit-Log - HTTP Benutzersitzungs-Protokoll" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Auditlog - HTTP-Anforderungsprotokoll" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Auditlog - Protokoll" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Auditlog - Log-Informationen (Feldänderungen)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Auditlog - Regel" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "Auto-vacuum Audit-Protokolle" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontext" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Erstellt von" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Erstellt am:" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Beschreibung" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Anzeigename" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Entwurf" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Kurz-Protokoll" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Feld" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Felder aktualisiert" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Ausführliches Protokoll" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "Ausführliches Protokoll: Erstellt ein Diff der Daten vor und nach dem " | ||||||
|  | "Vorgang (Protokolliert mehr Inhalte, wie berechnete Felder die aktualisiert " | ||||||
|  | "wurden, ist aber langsamer)\n" | ||||||
|  | "Kurz-Protokoll: Protokolliert nur Änderungen durch Anlage- und " | ||||||
|  | "Schreibvorgänge (weniger Daten, aber schnell)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Gruppieren nach ..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "HTTP-Kontext" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "HTTP-Anforderung" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "HTTP-Anforderungen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Zuletzt geändert am" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Zuletzt aktualisiert von" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Zuletzt aktualisiert am" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Protokoll" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Feldänderungen protokollieren" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Erstellen protokollieren" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Löschen protokollieren" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Lesen protokollieren" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Schreiben protokollieren" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Protokolle" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Methode" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modell" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Name" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Neuer Wert" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Neuen Wert Text" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Alter Wert" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Alter Wert Text" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Pfad" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "Ressourcen-ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Ressourcenname" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "Stamm-URL" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Regel" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Regeln" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Wählen Sie das Modell, das protokolliert werden soll." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Aktivieren Sie dies, wenn die die Erstellungs-Vorgänge aller Datensätze für " | ||||||
|  | "das Modell protokollieren wollen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Aktivieren Sie dies, wenn die die Lösch-Vorgänge aller Datensätze für das " | ||||||
|  | "Modell protokollieren wollen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Aktivieren Sie dies, wenn die die Änderungs-Vorgänge aller Datensätze für " | ||||||
|  | "das Modell protokollieren wollen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Aktivieren Sie dies, wenn die die Lese-Vorgänge aller Datensätze für das " | ||||||
|  | "Modell protokollieren wollen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Sitzung" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "Sitzungs-ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Status" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Aktiviere" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Aktiviert" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Technische Bezeichnung" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Es wurde bereits eine Regel für dieses Modell erstellen.\n" | ||||||
|  | "Sie können keine weiteren erstellen. Ändern Sie die bestehende. " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Art" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Deaktivieren" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Benutzer" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Anwender-Sitzung" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Anwender-Sitzungen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Benutzer" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Werte" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Protokolle sichten" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "Wenn User nicht angegeben, wirkt dies auf alle Anwender" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Kostas Goutoudis <goutoudis@gmail.com>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2016\n" | ||||||
|  | "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "el_GR/)\n" | ||||||
|  | "Language: el_GR\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Δημιουργήθηκε από " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Δημιουργήθηκε στις" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Ημερομηνία" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Περιγραφή" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "Κωδικός" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Τελευταία ενημέρωση από" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Τελευταία ενημέρωση στις" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Αρχεία καταγραφής" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Ονομασία" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Τύπος" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Χρήστες" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Created by" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Created on" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Date" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Description" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Display Name" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Draft" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Group By..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Last Modified on" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Last Updated by" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Last Updated on" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Name" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "User" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,480 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # enjolras <yo@miguelrevilla.com>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "Last-Translator: enjolras <yo@miguelrevilla.com>, 2018\n" | ||||||
|  | "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" | ||||||
|  | "Language: es\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Acción  " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Auditoría  " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Auditlog - Borrar registros antiguos " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Auditlog - Registro de sesión de usuario HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Auditlog - Reigstro de peticiones HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Auditlog - Registro" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Auditlog - Detalles de registro (campos actualizados)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Auditlog - Regla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "Limpiar automáticamente los auditlogs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Fecha" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre a mostrar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "No suscrito" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Registro rápido" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Campo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Campos actualizados" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Registro completo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "Registro completo: Realiza una comparación entre los datos antes y después " | ||||||
|  | "de la operación (registra más información como los campos calculados que " | ||||||
|  | "fueron actualizados, pero es más lento)\n" | ||||||
|  | "Registro rápido: sólo registra los cambios realizados a través de las " | ||||||
|  | "operaciones de crear y escribir (menos información, pero más rápido)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "Contexto HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "Petición HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "Peticiones HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última actualización por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización el" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Registro" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Registro - Campo actualizado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Crear registros" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Borrar registros" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Registrar lecturas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Registrar modificaciones" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Registros" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Método" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modelo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Valor nuevo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Texto del valor nuevo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Valor anterior" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Texto del valor anterior" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Ruta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "ID del recurso" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Nombre del recurso" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "URL raíz" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Regla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Reglas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Seleccione el modelo al que quiere generar un registro" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Marque esta casilla si desea hacer un seguimiento de la creacion de " | ||||||
|  | "cualquier registro del modelo de esta regla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Marque esta casilla si desea hacer un seguimiento  del borrado de los " | ||||||
|  | "registros del modelo de esta regla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Marque esta casilla si desea hacer un seguimiento de las modificaciones de " | ||||||
|  | "cualquier registro del modelo de esta regla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Marque esta casilla si desea hacer seguimiento de lectura/apertura de " | ||||||
|  | "cualquier registro del modelo de esta regla" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Sesión" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "ID de sesión" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Suscribir" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Suscrito" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Nombre técnico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Ya existe una regla definida para este modelo.\n" | ||||||
|  | "No puede definir otra: por favor, modifique el existente." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Desuscribir" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Sesión de usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Sesiones de usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuarios" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Valores" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Ver registros" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | "Si el usuario no se agrega entonces será aplicable para todos los usuarios" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/es_AR/)\n" | ||||||
|  | "Language: es_AR\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Fecha" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Mostrar Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última modificación en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización realizada por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización el" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre mostrado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID (identificación)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última modificación en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización de" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre Público" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última Modificación el" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Actualizado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Actualizado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Fecha" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Borrador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Ultima actualización por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ultima actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre mostrado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última modificación en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización de" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Fecha" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre mostrado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Borrador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID (identificación)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última modificación en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización de" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-05-01 10:38+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-05-01 10:38+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "es_ES/)\n" | ||||||
|  | "Language: es_ES\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre para mostrar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Borrador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última modificación en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Registro" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuarios" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "es_MX/)\n" | ||||||
|  | "Language: es_MX\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Fecha" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre desplegado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Borrador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Ultima modificacion realizada" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Ultima actualizacion por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ultima actualización realizada" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modelo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nombre a Mostrar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Ultima Modificación en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Actualizado última vez por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ultima Actualización" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Ultima actualización por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ultima actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Fecha" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descripción" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Mostrar nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Borrador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Modificada por última vez" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última actualización realizada por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ultima actualizacion en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nombre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Provincia" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" | ||||||
|  | "Language: et\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Loonud" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Loodud" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Kuupäev" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Kirjeldus" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Näidatav nimi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Mustand" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupeeri..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Viimati muudetud" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Viimati uuendatud" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Viimati uuendatud" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nimi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tüüp" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Kasutaja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Nork sortua" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Created on" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Deskribapena" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Izena erakutsi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Last Updated by" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Last Updated on" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Izena" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Mota" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" | ||||||
|  | "Language: fa\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "ایجاد شده توسط" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "ایجاد شده در" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "توصیف" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "نام نمایشی" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "شناسه" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "تاریخ آخرین بهروزرسانی" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "آخرین به روز رسانی توسط" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "آخرین به روز رسانی در" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "نام" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "نوع" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\n" | ||||||
|  | "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" | ||||||
|  | "Language: fi\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Toiminto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Konteksti" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Luonut" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Luotu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Päivämäärä" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Kuvaus" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nimi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Luonnos" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Kenttä" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Ryhmittele..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Viimeksi muokattu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Viimeksi päivittänyt" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Viimeksi päivitetty" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Lokit" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Mall" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nimi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Tila" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tyyppi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Käyttäjä" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Käyttäjät" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,483 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Nicolas JEUDY <njeudy@panda-chi.io>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-03-03 10:08+0000\n" | ||||||
|  | "Last-Translator: Nicolas JEUDY <njeudy@panda-chi.io>, 2018\n" | ||||||
|  | "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" | ||||||
|  | "Language: fr\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Action" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Audit" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Auditlog - Supprimer les anciens journaux" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Auditlog - Journal des session utilisateur en HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Auditlog - Journal des requêtes HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Auditlog - Log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Auditlog - Détails (champs modifiés)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Auditlog - Règle" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "Vidage automatique des logs d'audit" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexte" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Créé par" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Date" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Date" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Description" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nom affiché" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Brouillon" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Journal rapide" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Champ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Champs modifiés" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Journaux complet" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "journal complet: faire une comparaison entre les données avant et après " | ||||||
|  | "l'opération (enregistre plus d'informations comme les champs calculés qui " | ||||||
|  | "ont été mis à jour, mais c'est plus lent) \n" | ||||||
|  | "journal rapide: enregistre seulement les modifications apportées par les " | ||||||
|  | "opérations de créations et modifications  (moins d'informations, mais c'est " | ||||||
|  | "plus rapide)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grouper par..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "Contexte HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "Requête HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "Requêtes HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Dernière modification le" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Dernière mise à jour par" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Dernière mise à jour le" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Log - Champs modifiés" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Enregistrer les créations" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Enregistrer les suppressions" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Enregistrer les lectures" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Enregistrer les écritures" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Journaux" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Méthode" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modèle" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nom" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Nouvelle valeur" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Nouvelle valeur texte" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Ancienne valeur" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Ancienne valeur texte" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Chemin" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "ID de l'enregistrement" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Nom de l'enregistrement" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "URL Racine" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Règle" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Règles" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Sélectionnez le modèle pour lequel vous voulez générer un historique." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Cochez cette case si vous voulez garder une trace de la création d'un nouvel " | ||||||
|  | "enregistrement concernant le modèle défini dans cette règle." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Cochez cette case si vous voulez garder une trace des suppressions des " | ||||||
|  | "enregistrements du modèle défini dans cette règle." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Cochez cette case si vous voulez garder une trace des modifications sur " | ||||||
|  | "chaque enregistrement du modèle défini dans cette règle." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Cochez cette case si vous voulez garder une trace de la lecture/ouverture de " | ||||||
|  | "chaque enregistrement du modèle défini dans cette règle." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Session" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "ID de session" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "État" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Abonner" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Abonné" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Nom technique" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Il existe déjà une règle définie sur ce modèle\n" | ||||||
|  | "Vous ne pouvez pas en définir une nouvelle, vous devez modifier celle " | ||||||
|  | "existante." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Désabonner" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Utilisateur" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Session utilisateur" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Sessions utilisateur" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilisateurs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Valeurs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Consulter les journaux" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | "Si l'utilisateur n'est pas ajouté alors cela sera applicable à tous les " | ||||||
|  | "utilisateurs" | ||||||
|  | @ -0,0 +1,466 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Adriana Ierfino <adriana.ierfino@savoirfairelinux.com>, 2016 | ||||||
|  | # Martin Malorni <mm@microcom.ca>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Martin Malorni <mm@microcom.ca>, 2016\n" | ||||||
|  | "Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Créé par" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Créé le" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Date" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Description" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Afficher le nom" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "Identifiant" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Dernière mise à jour par" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Dernière mise à jour le" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modèle" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nom" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # leemannd <leemannd@gmail.com>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-12-03 04:11+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-12-03 04:11+0000\n" | ||||||
|  | "Last-Translator: leemannd <leemannd@gmail.com>, 2016\n" | ||||||
|  | "Language-Team: French (Switzerland) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/fr_CH/)\n" | ||||||
|  | "Language: fr_CH\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Créé par" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Créé le" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nom affiché" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Brouillon" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Dernière modification le" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Modifié par" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Modifié le" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Etat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilisateurs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Aurel <theaurel60@gmail.com>, 2017 | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-22 00:54+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-22 00:54+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "fr_FR/)\n" | ||||||
|  | "Language: fr_FR\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Date" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Logs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilsateurs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # César Castro Cruz <ulmroan@gmail.com>, 2016 | ||||||
|  | # Alejandro Santana <alejandrosantana@anubia.es>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>, 2016\n" | ||||||
|  | "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creado en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descrición" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Borrador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Modificado por última vez o" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "ültima actualización por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última actualización en" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nome" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuario" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Alejandro Santana <alejandrosantana@anubia.es>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>, 2016\n" | ||||||
|  | "Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "gl_ES/)\n" | ||||||
|  | "Language: gl_ES\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" | ||||||
|  | "Language: he\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "נוצר על ידי" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "נוצר ב-" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "תיאור" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "השם המוצג" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "מזהה" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "תאריך שינוי אחרון" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "עודכן לאחרונה על ידי" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "עודכן לאחרונה על" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "שם" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "סוג" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Bole <bole@dajmi5.com>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-05-10 00:47+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-05-10 00:47+0000\n" | ||||||
|  | "Last-Translator: Bole <bole@dajmi5.com>, 2017\n" | ||||||
|  | "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Akcija" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Revizija" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Nadzor - briši stare zapise" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Nadzor - zapisi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Nadzor - detaljni zapisi (ažurirana polja)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Nadzor - pravilo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Kreirao" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Kreirano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Opis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Naziv " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Skica" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Brzi zapis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Polje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Ažurirana polja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Puni zapis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupiraj po..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Zadnje modificirano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Zadnji ažurirao" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Zadnje ažuriranje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Dnevnik izmjena" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Metoda" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Pravila" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Status" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Tehnički naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Korisnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Korisnici" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,466 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Bole <bole@dajmi5.com>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Bole <bole@dajmi5.com>, 2016\n" | ||||||
|  | "Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "hr_HR/)\n" | ||||||
|  | "Language: hr_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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Kreirao" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Kreirano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Opis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupiraj po..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Zadnje modificirano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Zadnji ažurirao" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Zadnje ažurirano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Logovi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Metoda" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Oblast/Županija" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Korisnici" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" | ||||||
|  | "Language: hu\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Művelet" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontextus" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Készítette" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Létrehozás dátuma" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Dátum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Leírás" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Név megjelenítése" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Tervezet" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Csoportosítás ezzel..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Utolsó frissítés dátuma" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Utoljára frissítve, által" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Utoljára frissítve " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Napló" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modell, minta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Név" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Állapot" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Típus" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Felhasználó" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" | ||||||
|  | "Language: id\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Dibuat oleh" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Dibuat pada" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Tanggal" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Keterangan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nama Tampilan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Terakhir Dimodifikasi pada" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Diperbaharui oleh" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Diperbaharui pada" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nama" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Jenis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Paolo Valier <paolo.valier@hotmail.it>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2016\n" | ||||||
|  | "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" | ||||||
|  | "Language: it\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Azione" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contesto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creato da" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creato il" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descrizione" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nome da visualizzare" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Bozza" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Campo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Campi aggiornati" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Raggruppa per..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "Contesto HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "Richiesta HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Ultima modifica il" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Ultimo aggiornamento da" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ultimo aggiornamento il" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Metodo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modello" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nome" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Percorso" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "ID Risorsa" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Nome della Risorsa" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Sessione" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "ID Sessione" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Stato" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Sottoscrivi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Sottoscritto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Utente" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utenti" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Valori" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" | ||||||
|  | "Language: ja\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "コンテキスト" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "作成者" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "作成日" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "日付" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "説明" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "表示名" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "ドラフト" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "グループ化…" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "最終更新日" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "最終更新者" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "最終更新日" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "名称" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "タイプ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "ユーザ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" | ||||||
|  | "Language: ko\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "작성자" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "작성일" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "날짜" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "설명" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "표시 이름" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "최근 수정" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "최근 갱신한 사람" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "최근 갱신 날짜" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "이름" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "유형" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" | ||||||
|  | "Language: lt\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" | ||||||
|  | "%100<10 || n%100>=20) ? 1 : 2);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontekstas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Sukūrė" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Sukurta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Aprašymas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Vaizduojamas pavadinimas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Juodraštis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupuoti pagal..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Paskutinį kartą keista" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Paskutinį kartą atnaujino" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Paskutinį kartą atnaujinta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Pavadinimas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Naudotojas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Arminas Grigonis <arminas@versada.lt>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Arminas Grigonis <arminas@versada.lt>, 2016\n" | ||||||
|  | "Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/lt_LT/)\n" | ||||||
|  | "Language: lt_LT\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" | ||||||
|  | "%100<10 || n%100>=20) ? 1 : 2);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Sukūrė" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Sukurta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Paskutinį kartą atnaujino" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Paskutinį kartą atnaujinta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" | ||||||
|  | "Language: lv\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 != 0 ? 1 : " | ||||||
|  | "2);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Darbība" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Konteksts" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Izveidoja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Izveidots" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datums" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Apraksts" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupēt pēc..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Pēdējo reizi atjaunoja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Pēdējās izmaiņas" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nosaukums" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tips" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Lietotājs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Контекст" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Креирано од" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Креирано на" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Датум" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Опис" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Прикажи име" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Нацрт" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Групирај по..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Последна промена на" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Последно ажурирање од" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Последно ажурирање на" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Име" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Тип" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Корисник" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Агуулга" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Үүсгэгч" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Үүсгэсэн" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Огноо" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Тодорхойлолт" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Дэлгэцийн Нэр" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Ноорог" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Бүлэглэх..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Сүүлийн засвар хийсэн огноо" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Сүүлийн засвар хийсэн" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Сүүлийн засвар хийсэн огноо" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Нэр" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Төрөл" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Хэрэглэгч" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Tiltak" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Revisjon" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Opprettet av" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Opprettet den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Dato" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Beskrivelse" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Visnings navn" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Utkast" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupper etter ..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Sist oppdatert " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Sist oppdatert av" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Sist oppdatert" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Logg" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Navn" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Status" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Bruker" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016\n" | ||||||
|  | "Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/nb_NO/)\n" | ||||||
|  | "Language: nb_NO\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Laget av" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Laget den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Vis navn" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Drøfting" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Sist endret den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Sist oppdatert av" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Sist oppdatert den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Stat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Erwin van der Ploeg <erwin@odooexperts.nl>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2016\n" | ||||||
|  | "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" | ||||||
|  | "Language: nl\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Actie" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Context" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Aangemaakt door" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Aangemaakt op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Omschrijving" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Te tonen naam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Concept" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Veld" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Groepeer op..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Laatst bijgewerkt op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Laatst bijgewerkt door" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Laatst bijgewerkt op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Naam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Staat/Provincie" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Gebruiker" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Gebruikers" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "nl_BE/)\n" | ||||||
|  | "Language: nl_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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Gemaakt door" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Gemaakt op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Omschrijving" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Schermnaam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Concept" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Groeperen op..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Laatst Aangepast op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Laatst bijgewerkt door" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Laatst bijgewerkt op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Naam:" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Gebruiker" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,481 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Frank Schellenberg <opensource@schellenberg.nl>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-04 15:28+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-04 15:28+0000\n" | ||||||
|  | "Last-Translator: Frank Schellenberg <opensource@schellenberg.nl>, 2018\n" | ||||||
|  | "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/nl_NL/)\n" | ||||||
|  | "Language: nl_NL\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Actie" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Audit" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Auditlog - Verwijder oude logs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Auditlog - HTTP Gebruiker sessie log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Auditlog - HTTP-aanvraag log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Auditlog - Log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Auditlog - Log details (velden geüpdatet)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Auditlog - Regel" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "Audit logs automatisch opschonen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Context" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Aangemaakt door" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Aangemaakt op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Omschrijving" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "weergavenaam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Concept" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Beknopt log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Veld" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Velden bijgewerkt" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Volledig log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "Volledig log: Maakt een diff van de data voor en na de verandering (legt dus " | ||||||
|  | "meer gegevens vast maar is ook trager).\n" | ||||||
|  | "Beknopt log: Legt alleen de veranderingen vast van Create and Write acties " | ||||||
|  | "(minder informatie, maar wel sneller)." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Groeperen op...." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "HTTP Context" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "HTTP-aanvraag" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "HTTP-aanvragen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Laatst gewijzigd op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Laatst bijgewerkt door" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Laatst bijgewerkt op" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Log" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Log - Veld gewijzigd" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Log Creates (Maken)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Log Deletes (Verwijderen)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Log Reads (Lezen)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Log Writes (Schrijven)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Logs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Methode" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Naam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Nieuwe Waarde" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Nieuwe waarde Tekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Oude Waarde" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Oude waarde Tekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Pad" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "Bron ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Bron Naam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "Root URL" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Regel" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Regels" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Selecteer het model waarvoor een log moet worden bijgehouden." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Vink aan indien je als je alle Create (Maak) acties voor elk record van dit " | ||||||
|  | "model wilt volgen." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Vink aan indien je als je alle Delete (Verwijder) acties voor elk record van " | ||||||
|  | "dit model wilt volgen." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Vink aan indien je als je alle Update (Wijziging) acties voor elk record van " | ||||||
|  | "dit model wilt volgen." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Vink aan indien je als je alle Read (Lees) acties voor elk record van dit " | ||||||
|  | "model wilt volgen." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Sessie" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "Sessie ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Status" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Aanmelden" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Aangemeld" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Technische naam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Er is voor dit model al een regel aangemaakt.\n" | ||||||
|  | "Je kan er niet nog een aanmaken: pas de al bestaande regel aan." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Type" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Afmelden" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Gebruiker" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Geruikerssessie" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Gebruikerssessies" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Gebruikers" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Waarden" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Bekijk logs" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | "als er geen Gebruiker wordt toegevoegd dan is het van toepassing op alle " | ||||||
|  | "gebruikers" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" | ||||||
|  | "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 " | ||||||
|  | "|| n%100>=20) ? 1 : 2);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Utworzone przez" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Utworzono" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Opis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Wyświetlana nazwa " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Projekt" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupuj wg..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Ostatnio modyfikowano" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Ostatnio modyfikowane przez" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ostatnia zmiana" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nazwa" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Stan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Typ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Użytkownik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Pedro Castro Silva <pedrocs@sossia.pt>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-08-01 02:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-08-01 02:43+0000\n" | ||||||
|  | "Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2017\n" | ||||||
|  | "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" | ||||||
|  | "Language: pt\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Ação" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Criado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Criado em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descrição" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nome" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Rascunho" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última Modificação Em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última Modificação Por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última Atualização Em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Registo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Método" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modelo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nome" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Regras" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Utilizador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilizadores" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,473 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/pt_BR/)\n" | ||||||
|  | "Language: pt_BR\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Ação" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Auditar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Auditlog - Deletar logs antigos" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Auditlog - log da sessão do usuário HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "log requisição HTTP" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Histórico de Auditoria - Histórico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Histórico de Auditoria - Detalhes do histórico (campos atualizados)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Histórico de Auditoria - Regras" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Contexto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Criado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Criado em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descrição" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nome para Mostrar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Rascunho" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Campo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Campos atualizados" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "Identificação" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última atualização em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última atualização por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última atualização em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Histórico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Histórico - Campo atualizado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Histórico Criado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Histórico Excluído" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Leitura de Histórico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Gravação de Histórico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Histórico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Método" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modelo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nome" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Novo Valor" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Novo Valor de Texto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Valor Antigo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Valor Antigo de Texto" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Caminho" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "Identificação do Recurso" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Nome do Recurso" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Regra" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Regras" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Selecione o modelo do qual deseja gerar histórico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecione este se quiser manter o rastreio de criação de qualquer registro " | ||||||
|  | "do modelo desta regra" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecione este se quiser manter o rastreio de exclusão de qualquer registro " | ||||||
|  | "do modelo desta regra" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecione este se quiser manter o rastreio de modificação de qualquer " | ||||||
|  | "registro do modelo desta regra" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecione este se quiser manter o rastreio de leitura/abertura de qualquer " | ||||||
|  | "registro do modelo desta regra" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Inscrever" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Inscrito" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Nome técnico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Desinscrever" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Usuário" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Sessão do Usuário" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Sessões do Usuário" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuários" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Valores" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Ver Histórico" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | "Se um usuário não é incluído, então ele será aplicado para todos os usuários" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Pedro Castro Silva <pedrocs@sossia.pt>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2016\n" | ||||||
|  | "Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/pt_PT/)\n" | ||||||
|  | "Language: pt_PT\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Criado por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Criado em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descrição" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nome a Apresentar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Rascunho" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Agrupar Por..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Última Modificação Em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Última Atualização Por" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Última Atualização Em" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Método" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Modelo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nome" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Estado" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tipo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Utilizador" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,481 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Actiune" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Audit" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Auditreg - Elimina registre anterioare" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Auditreg - HTTP Registru de sesiune utilizator" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Auditreg - HTTP Cerere registru" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Auditreg - Registru " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Auditreg - Detalli  registru (coloane actualizate)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Auditreg - Regula" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Context" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Creat de" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Creat la" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Data" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Descriere" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Nume Afişat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Schiță" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Registru rapid" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Columna" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Columne actualizate" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Registru complet" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "Registru complet: realizeaza o comparatie intre datele anterioare si dupa " | ||||||
|  | "operatie ( registreaza informatia din columne procesate si actualizate, dar " | ||||||
|  | "este mai lent) Registru rapid: registreaza doar schimbarile realizate la " | ||||||
|  | "crearea si scrierea informatiei in columne ( mai putina informatie, dar este " | ||||||
|  | "mai rapid) " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupează după..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "HTTP Context" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "HTTP Cerere" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "HTTP Cereri" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Ultima actualizare în" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Ultima actualizare făcută de" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Ultima actualizare la" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Registru" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Registru - Columne actulizate" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Creare registre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Stergere registre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Lectura registre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Scriere registre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Registre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Metoda" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Nume" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Valoare noua" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Valoare noua Text" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Valoare anterioare" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Valoare anterioara Text" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Ruta" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "Resursa ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Resursa Nume" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "Root URL" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Regula" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Reguli" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Selecteaza modelul pentru care doresti sa generezi un registru." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecteaza daca doresti sa te mentii informat cu crearea columnelor din " | ||||||
|  | "acest model cu aceasta regula." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecteaza daca doresti sa te mentii informat cu eliminarea columnelor din " | ||||||
|  | "acest model cu aceasta regula." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecteaza daca doresti sa te mentii informat cu modificarea columnelor din " | ||||||
|  | "acest model cu aceasta regula." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Selecteaza daca doresti sa te mentii informat cu scrierea/accesul columnelor " | ||||||
|  | "din acest model cu aceasta regula." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Sesiune" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "Sesiune ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Tara" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Inregistreaza" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Inregistrat" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Nume tehnic" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Exista deja o regula definita pentru aces model. Nu se admite alta " | ||||||
|  | "definitie: Te rugam modifica cea existenta." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Elimina inregistrare" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Utilizator" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Sesiune Utilizator" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Sesiuni Utilizator" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilizatori" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Valori" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Vizualizeaza registre" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | "Daca un Utilizator nu este agregat atunci este aplicabil pentru toti " | ||||||
|  | "utilizatorii." | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" | ||||||
|  | "Language: ru\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" | ||||||
|  | "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" | ||||||
|  | "%100>=11 && n%100<=14)? 2 : 3);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Контекст" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Создано" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Создан" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Дата" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Описание" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Черновик" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Поле" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Группировать по .." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Последний раз обновлено" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Последний раз обновлено" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Модель" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Название" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Тип" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Пользователь" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # ivbo <ivan@bock.sk>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: ivbo <ivan@bock.sk>, 2016\n" | ||||||
|  | "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" | ||||||
|  | "Language: sk\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>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Vytvoril" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Vytvorené" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Dátum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Popis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Zobraziť meno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Zoskupiť podľa..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Posledná modifikácia" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Naposledy upravoval" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Naposledy upravované" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Logy" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Meno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Typ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,479 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" | ||||||
|  | "Language: sl\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" | ||||||
|  | "%100==4 ? 2 : 3);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Ukrep" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Revizija" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Revizijski dnevnik - izbriši stare dnevnike" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Revizijski dnevnik - HTTP uporabniške seje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Revizijski dnevnik - HTTP zahtevki" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Revizijski dnevnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Revizijski dnevnik - podrobnosti (posodobljena polja)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Revizijski dnevnik - pravila" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Kontekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Ustvaril" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Ustvarjeno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Opis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Prikazni naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Osnutek" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Hitri dnevnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Polje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Posodobljena polja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Polni dnevnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "Polni dnevnik: izdela razliko med podatki pred in po operaciji (beleži več " | ||||||
|  | "informacij, kot npr. izračunana polja, ki so bila posodobljena, a je " | ||||||
|  | "počasnejši)\n" | ||||||
|  | "Hitri dnevnik: beleži le spremembe nastale med operacijami ustvarjanja in " | ||||||
|  | "zapisovanja (manj informacij, a je hitrejši)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Združi po..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "HTTP kontekst" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "HTTP zahtevek" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "HTTP zahtevki" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Zadnjič spremenjeno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Zadnjič posodobil" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Zadnjič posodobljeno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Dnevnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Dnevnik - posodobljena polja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Dnevnik ustvarjanja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Dnevnik brisanja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Dnevnik branja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Dnevnik zapisov" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "Dnevniki" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Metoda" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Model" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Nova vrednost" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Nova vrednost tekstualno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Stara vrednost" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Stara vrednost tekstualno" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Pot" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "ID vira" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Naziv vira" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "Korenska URL" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Pravilo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Pravila" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Izbira modela za katerega ustvarjate dnevnik." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Izberite, če želite slediti ustvarjanju kateregakoli zapisa na modelu, na " | ||||||
|  | "katerega se nanaša to pravilo." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Izberite, če želite slediti brisanju kateregakoli zapisa na modelu, na " | ||||||
|  | "katerega se nanaša to pravilo." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Izberite, če želite slediti spreminjanju kateregakoli zapisa na modelu, na " | ||||||
|  | "katerega se nanaša to pravilo." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "Izberite, če želite slediti branju/odpiranju kateregakoli zapisa na modelu, " | ||||||
|  | "na katerega se nanaša to pravilo." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Seja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "ID seje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Stanje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Naroči se" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Naročen" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Tehnični naziv" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Za ta model je že določeno pravilo\n" | ||||||
|  | "Ne morete določiti drugega, lahko pa uredite obstoječega." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Odjavi naročnino" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Uporabnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Uporabniška seja" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "Uporabniške seje" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Uporabniki" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Vrednosti" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Prikaz dnevnikov" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "Če ne dodate uporabnika, bo veljalo za vse uporabnike" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" | ||||||
|  | "Language: sr\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Kreiran" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Opis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Ime" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "sr@latin/)\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Kreirao" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Kreiran" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Opis" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Ime za prikaz" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Nacrt" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Zadnja izmjena" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Zadnja izmjena" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Zadnja izmjena" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Ime:" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Korisnik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" | ||||||
|  | "Language: sv\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Åtgärd" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Revision" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Sammanhang" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Skapad av" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Skapad den" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Datum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Beskrivning" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Visa namn" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Preliminär" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Gruppera efter..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Senast redigerad" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Senast uppdaterad av" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Senast uppdaterad" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Namn" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Status" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Typ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Användare" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" | ||||||
|  | "Language: th\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "ปฏิบัติ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "สร้างโดย" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "สร้างเมื่อ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "วันที่" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "รายละเอียด" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "ชื่อที่ใช้แสดง" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "ฉบับร่าง" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "จัดกลุ่มตาม..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "รหัส" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "แก้ไขครั้งสุดท้ายเมื่อ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "อัพเดทครั้งสุดท้ายโดย" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "อัพเดทครั้งสุดท้ายเมื่อ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "ชื่อ" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "ชนิด" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "ผู้ใช้" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,472 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-12-06 03:40+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" | ||||||
|  | "Language: tr\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Eylem" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "Denetim" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "Denetim Günlüğü - Eski günlükleri sil" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "Denetim Günlüğü - HTTP kullanıcı oturum logu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "Denetim Günlüğü - HTTP istek geçmişi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "Denetim Günlüğü - geçmiş" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "Denetim Günlüğü - Günlük detatları (güncellenen alanlar) " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "Denetim Günlüğü - Kural" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "Bağlam" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Oluşturan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Oluşturuldu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Tarih" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Açıklama" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Görünen İsim" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Taslak" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "Hızlı Günlük" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "Alan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "Alanlar güncellendi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "Tam Günlük" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | "Tam Günlük: İşlemden önceki ve sonraki verinin farkını bulur. (hesaplanan " | ||||||
|  | "alanlar gibi bilgileri saklar ama daha yavaş çalışır)\n" | ||||||
|  | "Hızlı Günlük: Sadece oluştur ve yaz işlemleri ile yapılanları kaydeder. " | ||||||
|  | "(daha az bilgi içerir ama daha hızlıdır)" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "Grupla..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "HTTP Bağlamı" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "HTTP isteği" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "HTTP isteği" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Son değişiklik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Son güncellendi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Son güncellenme" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "günlük" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "Günlük - Güncellenen alan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "Oluşturma günlükleri" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "Silme günlükleri" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "Okuma günlükleri" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "Yazma günlükleri" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "günlükler" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "Method" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Alan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Adı" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "Yeni Değer" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "Yeni değer metni" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "Eski Değer" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "Eski değer Metni" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "Yol" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "Kaynak ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "Kaynak Adı" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "Kök URL" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "Kural" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "Kurallar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "Günlük oluşturmak istediğiniz modeli seçin." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "bu modelde oluşturulan her kayıt için günlük tutmak isterseniz bunu seçin." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "bu modelde silinen her kayıt için günlük tutmak isterseniz bunu seçin." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "bu modelde değiştirilen her kayıt için günlük tutmak isterseniz bunu seçin." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | "bu modelde okunan/açılan her kayıt için günlük tutmak isterseniz bunu seçin." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "Oturum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "Oturum ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Durum" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "Üye ol" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "Üye oldu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Teknik İsim" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | "Bu model için zaten bir kural tanımlanmış\n" | ||||||
|  | "başka kural tanımlayamazsınız: lütfen olan kaydı güncelleyin." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tür" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "Takibi bırak" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Kullanıcı" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "Kullanıcı oturumu" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "kullanıcı oturumları" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Kullanıcılar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "Değerler" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "Günlükleri göster" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "Eğer kullanıcı eklenmediyse bütün kullanıcılar için geçerli olur" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Ozge Altinisik <ozge@altinkaya.com.tr>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-07 04:03+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-01-07 04:03+0000\n" | ||||||
|  | "Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n" | ||||||
|  | "Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "tr_TR/)\n" | ||||||
|  | "Language: tr_TR\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "Eylem" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Oluşturan" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Oluşturulma tarihi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Açıklama" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Görünen ad" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Taslak" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "Kimlik" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "En son güncelleme tarihi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "En son güncelleyen " | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "En son güncelleme tarihi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "Kayıt" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Ad" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "Hal" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Tip" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Kullanıcı" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Kullanıcılar" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" | ||||||
|  | "Language: uk\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Створив" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Дата створення" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Дата" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Опис" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Назва для відображення" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Остання модифікація" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Востаннє оновив" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Останнє оновлення" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Name" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Тип" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,463 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" | ||||||
|  | "Language: vi\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Được tạo bởi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Được tạo vào" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "Ngày" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Miêu tả" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Tên hiển thị" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "Dự thảo" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Sửa lần cuối vào" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Last Updated by" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Cập nhật lần cuối vào" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Tên" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "Loại" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "Người sử dụng" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/vi_VN/)\n" | ||||||
|  | "Language: vi_VN\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "Tạo bởi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "Tạo vào" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Mô tả" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "Cập nhật lần cuối bởi" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "Cập nhật lần cuối vào" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "Tên" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,465 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | # Jeffery Chen Fan <jeffery9@gmail.com>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: Jeffery Chen Fan <jeffery9@gmail.com>, 2016\n" | ||||||
|  | "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "zh_CN/)\n" | ||||||
|  | "Language: zh_CN\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "上下文" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "创建者" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "创建时间" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "日期" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "Description" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "Display Name" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "草稿" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "分组依据是" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "ID" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "Last Modified on" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "最后更新者" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "上次更新日期" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "模型" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "名称" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "状态" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "Technical name" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "类型" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "用户" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "用户" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,464 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auditlog | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2016 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 9.0c\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-11-26 01:45+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||||||
|  | "Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "zh_TW/)\n" | ||||||
|  | "Language: zh_TW\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: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_action_id | ||||||
|  | msgid "Action" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit | ||||||
|  | msgid "Audit" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_autovacuum | ||||||
|  | msgid "Auditlog - Delete old logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_session | ||||||
|  | msgid "Auditlog - HTTP User session log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_http_request | ||||||
|  | msgid "Auditlog - HTTP request log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log | ||||||
|  | msgid "Auditlog - Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_log_line | ||||||
|  | msgid "Auditlog - Log details (fields updated)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model,name:auditlog.model_auditlog_rule | ||||||
|  | msgid "Auditlog - Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.server,name:auditlog.ir_cron_auditlog_autovacuum_ir_actions_server | ||||||
|  | #: model:ir.cron,cron_name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | #: model:ir.cron,name:auditlog.ir_cron_auditlog_autovacuum | ||||||
|  | msgid "Auto-vacuum audit logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_context | ||||||
|  | msgid "Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_uid | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "建立者" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_create_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_create_date | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "建立於" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Date" | ||||||
|  | msgstr "日期" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_description | ||||||
|  | msgid "Description" | ||||||
|  | msgstr "說明" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_display_name | ||||||
|  | msgid "Display Name" | ||||||
|  | msgstr "顯示名稱" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Draft" | ||||||
|  | msgstr "草稿" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Fast log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_id | ||||||
|  | msgid "Field" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_ids | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Fields updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 | ||||||
|  | msgid "Full log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "" | ||||||
|  | "Full log: make a diff between the data before and after the operation (log " | ||||||
|  | "more info like computed fields which were updated, but it is slower)\n" | ||||||
|  | "Fast log: only log the changes made through the create and write operations " | ||||||
|  | "(less information, but it is faster)" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Group By..." | ||||||
|  | msgstr "分類方式..." | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "HTTP Context" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_request_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "HTTP Request" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_http_request_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | msgid "HTTP Requests" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_id | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "編號" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line___last_update | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule___last_update | ||||||
|  | msgid "Last Modified on" | ||||||
|  | msgstr "最後修改:" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_uid | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_uid | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "最後更新:" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_autovacuum_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_write_date | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_write_date | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "最後更新於" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_log_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Log - Field updated" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "Log Creates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "Log Deletes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "Log Reads" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "Log Writes" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_log_ids | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_audit_logs | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_tree | ||||||
|  | msgid "Logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_method | ||||||
|  | msgid "Method" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_model_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_model_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Model" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_display_name | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_name | ||||||
|  | msgid "Name" | ||||||
|  | msgstr "名稱" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value | ||||||
|  | msgid "New Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_new_value_text | ||||||
|  | msgid "New value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value | ||||||
|  | msgid "Old Value" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_old_value_text | ||||||
|  | msgid "Old value Text" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_name | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Path" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_res_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "Resource ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_name | ||||||
|  | msgid "Resource Name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_root_url | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | msgid "Root URL" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_tree | ||||||
|  | msgid "Rules" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_model_id | ||||||
|  | msgid "Select model for which you want to generate log." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_create | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of creation on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_unlink | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of deletion on any record of the model " | ||||||
|  | "of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_write | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of modification on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_log_read | ||||||
|  | msgid "" | ||||||
|  | "Select this if you want to keep track of read/open on any record of the " | ||||||
|  | "model of this rule" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_http_session_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_http_session_id | ||||||
|  | msgid "Session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_name | ||||||
|  | msgid "Session ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_state | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "State" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Subscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: selection:auditlog.rule,state:0 | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_search | ||||||
|  | msgid "Subscribed" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_line_field_name | ||||||
|  | msgid "Technical name" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: sql_constraint:auditlog.rule:0 | ||||||
|  | msgid "" | ||||||
|  | "There is already a rule defined on this model\n" | ||||||
|  | "You cannot define another: please edit the existing one." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_log_type | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_log_type | ||||||
|  | msgid "Type" | ||||||
|  | msgstr "類型" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_rule_form | ||||||
|  | msgid "Unsubscribe" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_request_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_http_session_user_id | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_log_user_id | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User" | ||||||
|  | msgstr "使用者" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_request_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_form | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_search | ||||||
|  | msgid "User session" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_search | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_http_session_tree | ||||||
|  | msgid "User sessions" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,field_description:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.ui.view,arch_db:auditlog.view_auditlog_log_form | ||||||
|  | msgid "Values" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: code:addons/auditlog/models/rule.py:517 | ||||||
|  | #, python-format | ||||||
|  | msgid "View logs" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auditlog | ||||||
|  | #: model:ir.model.fields,help:auditlog.field_auditlog_rule_user_ids | ||||||
|  | msgid "if  User is not added then it will applicable for all users" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,7 @@ | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from . import rule | ||||||
|  | from . import http_session | ||||||
|  | from . import http_request | ||||||
|  | from . import log | ||||||
|  | from . import autovacuum | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # © 2016 ABF OSIELL <https://osiell.com> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | import logging | ||||||
|  | from datetime import datetime, timedelta | ||||||
|  | 
 | ||||||
|  | from odoo import models, fields, api | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | _logger = logging.getLogger(__name__) | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AuditlogAutovacuum(models.TransientModel): | ||||||
|  |     _name = 'auditlog.autovacuum' | ||||||
|  |     _description = "Auditlog - Delete old logs" | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def autovacuum(self, days): | ||||||
|  |         """Delete all logs older than ``days``. This includes: | ||||||
|  |             - CRUD logs (create, read, write, unlink) | ||||||
|  |             - HTTP requests | ||||||
|  |             - HTTP user sessions | ||||||
|  | 
 | ||||||
|  |         Called from a cron. | ||||||
|  |         """ | ||||||
|  |         days = (days > 0) and int(days) or 0 | ||||||
|  |         deadline = datetime.now() - timedelta(days=days) | ||||||
|  |         data_models = ( | ||||||
|  |             'auditlog.log', | ||||||
|  |             'auditlog.http.request', | ||||||
|  |             'auditlog.http.session', | ||||||
|  |         ) | ||||||
|  |         for data_model in data_models: | ||||||
|  |             records = self.env[data_model].search( | ||||||
|  |                 [('create_date', '<=', fields.Datetime.to_string(deadline))]) | ||||||
|  |             nb_records = len(records) | ||||||
|  |             records.unlink() | ||||||
|  |             _logger.info( | ||||||
|  |                 "AUTOVACUUM - %s '%s' records deleted", | ||||||
|  |                 nb_records, data_model) | ||||||
|  |         return True | ||||||
|  | @ -0,0 +1,72 @@ | ||||||
|  | # © 2015 ABF OSIELL <https://osiell.com> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from psycopg2.extensions import AsIs | ||||||
|  | 
 | ||||||
|  | from odoo import models, fields, api | ||||||
|  | from odoo.http import request | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AuditlogHTTPRequest(models.Model): | ||||||
|  |     _name = 'auditlog.http.request' | ||||||
|  |     _description = "Auditlog - HTTP request log" | ||||||
|  |     _order = "create_date DESC" | ||||||
|  | 
 | ||||||
|  |     display_name = fields.Char( | ||||||
|  |         "Name", compute="_compute_display_name", store=True) | ||||||
|  |     name = fields.Char("Path") | ||||||
|  |     root_url = fields.Char("Root URL") | ||||||
|  |     user_id = fields.Many2one( | ||||||
|  |         'res.users', string="User") | ||||||
|  |     http_session_id = fields.Many2one( | ||||||
|  |         'auditlog.http.session', string="Session") | ||||||
|  |     user_context = fields.Char("Context") | ||||||
|  |     log_ids = fields.One2many( | ||||||
|  |         'auditlog.log', 'http_request_id', string="Logs") | ||||||
|  | 
 | ||||||
|  |     @api.depends('create_date', 'name') | ||||||
|  |     def _compute_display_name(self): | ||||||
|  |         for httprequest in self: | ||||||
|  |             create_date = fields.Datetime.from_string(httprequest.create_date) | ||||||
|  |             tz_create_date = fields.Datetime.context_timestamp( | ||||||
|  |                 httprequest, create_date) | ||||||
|  |             httprequest.display_name = "%s (%s)" % ( | ||||||
|  |                 httprequest.name or '?', | ||||||
|  |                 fields.Datetime.to_string(tz_create_date)) | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def name_get(self): | ||||||
|  |         return [(request.id, request.display_name) for request in self] | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def current_http_request(self): | ||||||
|  |         """Create a log corresponding to the current HTTP request, and returns | ||||||
|  |         its ID. This method can be called several times during the | ||||||
|  |         HTTP query/response cycle, it will only log the request on the | ||||||
|  |         first call. | ||||||
|  |         If no HTTP request is available, returns `False`. | ||||||
|  |         """ | ||||||
|  |         if not request: | ||||||
|  |             return False | ||||||
|  |         http_session_model = self.env['auditlog.http.session'] | ||||||
|  |         httprequest = request.httprequest | ||||||
|  |         if httprequest: | ||||||
|  |             if hasattr(httprequest, 'auditlog_http_request_id'): | ||||||
|  |                 # Verify existence. Could have been rolled back after a | ||||||
|  |                 # concurrency error | ||||||
|  |                 self.env.cr.execute( | ||||||
|  |                     "SELECT id FROM %s WHERE id = %s", ( | ||||||
|  |                         AsIs(self._table), | ||||||
|  |                         httprequest.auditlog_http_request_id)) | ||||||
|  |                 if self.env.cr.fetchone(): | ||||||
|  |                     return httprequest.auditlog_http_request_id | ||||||
|  |             vals = { | ||||||
|  |                 'name': httprequest.path, | ||||||
|  |                 'root_url': httprequest.url_root, | ||||||
|  |                 'user_id': request.uid, | ||||||
|  |                 'http_session_id': http_session_model.current_http_session(), | ||||||
|  |                 'user_context': request.context, | ||||||
|  |             } | ||||||
|  |             httprequest.auditlog_http_request_id = self.create(vals).id | ||||||
|  |             return httprequest.auditlog_http_request_id | ||||||
|  |         return False | ||||||
|  | @ -0,0 +1,59 @@ | ||||||
|  | # © 2015 ABF OSIELL <https://osiell.com> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from odoo import models, fields, api | ||||||
|  | from odoo.http import request | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AuditlogtHTTPSession(models.Model): | ||||||
|  |     _name = 'auditlog.http.session' | ||||||
|  |     _description = "Auditlog - HTTP User session log" | ||||||
|  |     _order = "create_date DESC" | ||||||
|  | 
 | ||||||
|  |     display_name = fields.Char( | ||||||
|  |         "Name", compute="_compute_display_name", store=True) | ||||||
|  |     name = fields.Char("Session ID", index=True) | ||||||
|  |     user_id = fields.Many2one( | ||||||
|  |         'res.users', string="User", index=True) | ||||||
|  |     http_request_ids = fields.One2many( | ||||||
|  |         'auditlog.http.request', 'http_session_id', string="HTTP Requests") | ||||||
|  | 
 | ||||||
|  |     @api.depends('create_date', 'user_id') | ||||||
|  |     def _compute_display_name(self): | ||||||
|  |         for httpsession in self: | ||||||
|  |             create_date = fields.Datetime.from_string(httpsession.create_date) | ||||||
|  |             tz_create_date = fields.Datetime.context_timestamp( | ||||||
|  |                 httpsession, create_date) | ||||||
|  |             httpsession.display_name = "%s (%s)" % ( | ||||||
|  |                 httpsession.user_id and httpsession.user_id.name or '?', | ||||||
|  |                 fields.Datetime.to_string(tz_create_date)) | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def name_get(self): | ||||||
|  |         return [(session.id, session.display_name) for session in self] | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def current_http_session(self): | ||||||
|  |         """Create a log corresponding to the current HTTP user session, and | ||||||
|  |         returns its ID. This method can be called several times during the | ||||||
|  |         HTTP query/response cycle, it will only log the user session on the | ||||||
|  |         first call. | ||||||
|  |         If no HTTP user session is available, returns `False`. | ||||||
|  |         """ | ||||||
|  |         if not request: | ||||||
|  |             return False | ||||||
|  |         httpsession = request.session | ||||||
|  |         if httpsession: | ||||||
|  |             existing_session = self.search( | ||||||
|  |                 [('name', '=', httpsession.sid), | ||||||
|  |                  ('user_id', '=', request.uid)], | ||||||
|  |                 limit=1) | ||||||
|  |             if existing_session: | ||||||
|  |                 return existing_session.id | ||||||
|  |             vals = { | ||||||
|  |                 'name': httpsession.sid, | ||||||
|  |                 'user_id': request.uid, | ||||||
|  |             } | ||||||
|  |             httpsession.auditlog_http_session_id = self.create(vals).id | ||||||
|  |             return httpsession.auditlog_http_session_id | ||||||
|  |         return False | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | # © 2015 ABF OSIELL <https://osiell.com> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | from odoo import models, fields | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AuditlogLog(models.Model): | ||||||
|  |     _name = 'auditlog.log' | ||||||
|  |     _description = "Auditlog - Log" | ||||||
|  |     _order = "create_date desc" | ||||||
|  | 
 | ||||||
|  |     name = fields.Char("Resource Name", size=64) | ||||||
|  |     model_id = fields.Many2one( | ||||||
|  |         'ir.model', string="Model") | ||||||
|  |     res_id = fields.Integer("Resource ID") | ||||||
|  |     user_id = fields.Many2one( | ||||||
|  |         'res.users', string="User") | ||||||
|  |     method = fields.Char("Method", size=64) | ||||||
|  |     line_ids = fields.One2many( | ||||||
|  |         'auditlog.log.line', 'log_id', string="Fields updated") | ||||||
|  |     http_session_id = fields.Many2one( | ||||||
|  |         'auditlog.http.session', string="Session") | ||||||
|  |     http_request_id = fields.Many2one( | ||||||
|  |         'auditlog.http.request', string="HTTP Request") | ||||||
|  |     log_type = fields.Selection( | ||||||
|  |         [('full', "Full log"), | ||||||
|  |          ('fast', "Fast log"), | ||||||
|  |          ], | ||||||
|  |         string="Type") | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AuditlogLogLine(models.Model): | ||||||
|  |     _name = 'auditlog.log.line' | ||||||
|  |     _description = "Auditlog - Log details (fields updated)" | ||||||
|  | 
 | ||||||
|  |     field_id = fields.Many2one( | ||||||
|  |         'ir.model.fields', ondelete='cascade', string="Field", required=True) | ||||||
|  |     log_id = fields.Many2one( | ||||||
|  |         'auditlog.log', string="Log", ondelete='cascade', index=True) | ||||||
|  |     old_value = fields.Text("Old Value") | ||||||
|  |     new_value = fields.Text("New Value") | ||||||
|  |     old_value_text = fields.Text("Old value Text") | ||||||
|  |     new_value_text = fields.Text("New value Text") | ||||||
|  |     field_name = fields.Char("Technical name", related='field_id.name') | ||||||
|  |     field_description = fields.Char( | ||||||
|  |         "Description", related='field_id.field_description') | ||||||
|  | @ -0,0 +1,538 @@ | ||||||
|  | # © 2015 ABF OSIELL <https://osiell.com> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from odoo import models, fields, api, modules, _ | ||||||
|  | 
 | ||||||
|  | FIELDS_BLACKLIST = [ | ||||||
|  |     'id', 'create_uid', 'create_date', 'write_uid', 'write_date', | ||||||
|  |     'display_name', '__last_update', | ||||||
|  | ] | ||||||
|  | # Used for performance, to avoid a dictionary instanciation when we need an | ||||||
|  | # empty dict to simplify algorithms | ||||||
|  | EMPTY_DICT = {} | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class DictDiffer(object): | ||||||
|  |     """Calculate the difference between two dictionaries as: | ||||||
|  |     (1) items added | ||||||
|  |     (2) items removed | ||||||
|  |     (3) keys same in both but changed values | ||||||
|  |     (4) keys same in both and unchanged values | ||||||
|  |     """ | ||||||
|  |     def __init__(self, current_dict, past_dict): | ||||||
|  |         self.current_dict, self.past_dict = current_dict, past_dict | ||||||
|  |         self.set_current = set(current_dict) | ||||||
|  |         self.set_past = set(past_dict) | ||||||
|  |         self.intersect = self.set_current.intersection(self.set_past) | ||||||
|  | 
 | ||||||
|  |     def added(self): | ||||||
|  |         return self.set_current - self.intersect | ||||||
|  | 
 | ||||||
|  |     def removed(self): | ||||||
|  |         return self.set_past - self.intersect | ||||||
|  | 
 | ||||||
|  |     def changed(self): | ||||||
|  |         return set(o for o in self.intersect | ||||||
|  |                    if self.past_dict[o] != self.current_dict[o]) | ||||||
|  | 
 | ||||||
|  |     def unchanged(self): | ||||||
|  |         return set(o for o in self.intersect | ||||||
|  |                    if self.past_dict[o] == self.current_dict[o]) | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AuditlogRule(models.Model): | ||||||
|  |     _name = 'auditlog.rule' | ||||||
|  |     _description = "Auditlog - Rule" | ||||||
|  | 
 | ||||||
|  |     name = fields.Char("Name", size=32, required=True) | ||||||
|  |     model_id = fields.Many2one( | ||||||
|  |         'ir.model', "Model", required=True, | ||||||
|  |         help="Select model for which you want to generate log.") | ||||||
|  |     user_ids = fields.Many2many( | ||||||
|  |         'res.users', | ||||||
|  |         'audittail_rules_users', | ||||||
|  |         'user_id', 'rule_id', | ||||||
|  |         string="Users", | ||||||
|  |         help="if  User is not added then it will applicable for all users") | ||||||
|  |     log_read = fields.Boolean( | ||||||
|  |         "Log Reads", | ||||||
|  |         help=("Select this if you want to keep track of read/open on any " | ||||||
|  |               "record of the model of this rule")) | ||||||
|  |     log_write = fields.Boolean( | ||||||
|  |         "Log Writes", default=True, | ||||||
|  |         help=("Select this if you want to keep track of modification on any " | ||||||
|  |               "record of the model of this rule")) | ||||||
|  |     log_unlink = fields.Boolean( | ||||||
|  |         "Log Deletes", default=True, | ||||||
|  |         help=("Select this if you want to keep track of deletion on any " | ||||||
|  |               "record of the model of this rule")) | ||||||
|  |     log_create = fields.Boolean( | ||||||
|  |         "Log Creates", default=True, | ||||||
|  |         help=("Select this if you want to keep track of creation on any " | ||||||
|  |               "record of the model of this rule")) | ||||||
|  |     log_type = fields.Selection( | ||||||
|  |         [('full', "Full log"), | ||||||
|  |          ('fast', "Fast log"), | ||||||
|  |          ], | ||||||
|  |         string="Type", required=True, default='full', | ||||||
|  |         help=("Full log: make a diff between the data before and after " | ||||||
|  |               "the operation (log more info like computed fields which were " | ||||||
|  |               "updated, but it is slower)\n" | ||||||
|  |               "Fast log: only log the changes made through the create and " | ||||||
|  |               "write operations (less information, but it is faster)")) | ||||||
|  |     # log_action = fields.Boolean( | ||||||
|  |     #     "Log Action", | ||||||
|  |     #     help=("Select this if you want to keep track of actions on the " | ||||||
|  |     #           "model of this rule")) | ||||||
|  |     # log_workflow = fields.Boolean( | ||||||
|  |     #     "Log Workflow", | ||||||
|  |     #     help=("Select this if you want to keep track of workflow on any " | ||||||
|  |     #           "record of the model of this rule")) | ||||||
|  |     state = fields.Selection( | ||||||
|  |         [('draft', "Draft"), ('subscribed', "Subscribed")], | ||||||
|  |         string="State", required=True, default='draft') | ||||||
|  |     action_id = fields.Many2one( | ||||||
|  |         'ir.actions.act_window', string="Action") | ||||||
|  | 
 | ||||||
|  |     _sql_constraints = [ | ||||||
|  |         ('model_uniq', 'unique(model_id)', | ||||||
|  |          ("There is already a rule defined on this model\n" | ||||||
|  |           "You cannot define another: please edit the existing one.")) | ||||||
|  |     ] | ||||||
|  | 
 | ||||||
|  |     def _register_hook(self): | ||||||
|  |         """Get all rules and apply them to log method calls.""" | ||||||
|  |         super(AuditlogRule, self)._register_hook() | ||||||
|  |         if not hasattr(self.pool, '_auditlog_field_cache'): | ||||||
|  |             self.pool._auditlog_field_cache = {} | ||||||
|  |         if not hasattr(self.pool, '_auditlog_model_cache'): | ||||||
|  |             self.pool._auditlog_model_cache = {} | ||||||
|  |         if not self: | ||||||
|  |             self = self.search([('state', '=', 'subscribed')]) | ||||||
|  |         return self._patch_methods() | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def _patch_methods(self): | ||||||
|  |         """Patch ORM methods of models defined in rules to log their calls.""" | ||||||
|  |         updated = False | ||||||
|  |         model_cache = self.pool._auditlog_model_cache | ||||||
|  |         for rule in self: | ||||||
|  |             if rule.state != 'subscribed': | ||||||
|  |                 continue | ||||||
|  |             if not self.pool.get(rule.model_id.model): | ||||||
|  |                 # ignore rules for models not loadable currently | ||||||
|  |                 continue | ||||||
|  |             model_cache[rule.model_id.model] = rule.model_id.id | ||||||
|  |             model_model = self.env[rule.model_id.model] | ||||||
|  |             # CRUD | ||||||
|  |             #   -> create | ||||||
|  |             check_attr = 'auditlog_ruled_create' | ||||||
|  |             if getattr(rule, 'log_create') \ | ||||||
|  |                     and not hasattr(model_model, check_attr): | ||||||
|  |                 model_model._patch_method('create', rule._make_create()) | ||||||
|  |                 setattr(type(model_model), check_attr, True) | ||||||
|  |                 updated = True | ||||||
|  |             #   -> read | ||||||
|  |             check_attr = 'auditlog_ruled_read' | ||||||
|  |             if getattr(rule, 'log_read') \ | ||||||
|  |                     and not hasattr(model_model, check_attr): | ||||||
|  |                 model_model._patch_method('read', rule._make_read()) | ||||||
|  |                 setattr(type(model_model), check_attr, True) | ||||||
|  |                 updated = True | ||||||
|  |             #   -> write | ||||||
|  |             check_attr = 'auditlog_ruled_write' | ||||||
|  |             if getattr(rule, 'log_write') \ | ||||||
|  |                     and not hasattr(model_model, check_attr): | ||||||
|  |                 model_model._patch_method('write', rule._make_write()) | ||||||
|  |                 setattr(type(model_model), check_attr, True) | ||||||
|  |                 updated = True | ||||||
|  |             #   -> unlink | ||||||
|  |             check_attr = 'auditlog_ruled_unlink' | ||||||
|  |             if getattr(rule, 'log_unlink') \ | ||||||
|  |                     and not hasattr(model_model, check_attr): | ||||||
|  |                 model_model._patch_method('unlink', rule._make_unlink()) | ||||||
|  |                 setattr(type(model_model), check_attr, True) | ||||||
|  |                 updated = True | ||||||
|  |         return updated | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def _revert_methods(self): | ||||||
|  |         """Restore original ORM methods of models defined in rules.""" | ||||||
|  |         updated = False | ||||||
|  |         for rule in self: | ||||||
|  |             model_model = self.env[rule.model_id.model] | ||||||
|  |             for method in ['create', 'read', 'write', 'unlink']: | ||||||
|  |                 if getattr(rule, 'log_%s' % method) and hasattr( | ||||||
|  |                         getattr(model_model, method), 'origin'): | ||||||
|  |                     model_model._revert_method(method) | ||||||
|  |                     delattr(type(model_model), 'auditlog_ruled_%s' % method) | ||||||
|  |                     updated = True | ||||||
|  |         if updated: | ||||||
|  |             modules.registry.Registry(self.env.cr.dbname).signal_changes() | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def create(self, vals): | ||||||
|  |         """Update the registry when a new rule is created.""" | ||||||
|  |         new_record = super(AuditlogRule, self).create(vals) | ||||||
|  |         if new_record._register_hook(): | ||||||
|  |             modules.registry.Registry(self.env.cr.dbname).signal_changes() | ||||||
|  |         return new_record | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def write(self, vals): | ||||||
|  |         """Update the registry when existing rules are updated.""" | ||||||
|  |         super(AuditlogRule, self).write(vals) | ||||||
|  |         if self._register_hook(): | ||||||
|  |             modules.registry.Registry(self.env.cr.dbname).signal_changes() | ||||||
|  |         return True | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def unlink(self): | ||||||
|  |         """Unsubscribe rules before removing them.""" | ||||||
|  |         self.unsubscribe() | ||||||
|  |         return super(AuditlogRule, self).unlink() | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def _make_create(self): | ||||||
|  |         """Instanciate a create method that log its calls.""" | ||||||
|  |         self.ensure_one() | ||||||
|  |         log_type = self.log_type | ||||||
|  | 
 | ||||||
|  |         @api.model | ||||||
|  |         @api.returns('self', lambda value: value.id) | ||||||
|  |         def create_full(self, vals, **kwargs): | ||||||
|  |             self = self.with_context(auditlog_disabled=True) | ||||||
|  |             rule_model = self.env['auditlog.rule'] | ||||||
|  |             new_record = create_full.origin(self, vals, **kwargs) | ||||||
|  |             new_values = dict( | ||||||
|  |                 (d['id'], d) for d in new_record.sudo() | ||||||
|  |                 .with_context(prefetch_fields=False).read(list(self._fields))) | ||||||
|  |             rule_model.sudo().create_logs( | ||||||
|  |                 self.env.uid, self._name, new_record.ids, | ||||||
|  |                 'create', None, new_values, {'log_type': log_type}) | ||||||
|  |             return new_record | ||||||
|  | 
 | ||||||
|  |         @api.model | ||||||
|  |         @api.returns('self', lambda value: value.id) | ||||||
|  |         def create_fast(self, vals, **kwargs): | ||||||
|  |             self = self.with_context(auditlog_disabled=True) | ||||||
|  |             rule_model = self.env['auditlog.rule'] | ||||||
|  |             vals2 = dict(vals) | ||||||
|  |             new_record = create_fast.origin(self, vals, **kwargs) | ||||||
|  |             new_values = {new_record.id: vals2} | ||||||
|  |             rule_model.sudo().create_logs( | ||||||
|  |                 self.env.uid, self._name, new_record.ids, | ||||||
|  |                 'create', None, new_values, {'log_type': log_type}) | ||||||
|  |             return new_record | ||||||
|  | 
 | ||||||
|  |         return create_full if self.log_type == 'full' else create_fast | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def _make_read(self): | ||||||
|  |         """Instanciate a read method that log its calls.""" | ||||||
|  |         self.ensure_one() | ||||||
|  |         log_type = self.log_type | ||||||
|  | 
 | ||||||
|  |         def read(self, fields=None, load='_classic_read', **kwargs): | ||||||
|  |             result = read.origin(self, fields, load, **kwargs) | ||||||
|  |             # Sometimes the result is not a list but a dictionary | ||||||
|  |             # Also, we can not modify the current result as it will break calls | ||||||
|  |             result2 = result | ||||||
|  |             if not isinstance(result2, list): | ||||||
|  |                 result2 = [result] | ||||||
|  |             read_values = dict((d['id'], d) for d in result2) | ||||||
|  |             # Old API | ||||||
|  | 
 | ||||||
|  |             # If the call came from auditlog itself, skip logging: | ||||||
|  |             # avoid logs on `read` produced by auditlog during internal | ||||||
|  |             # processing: read data of relevant records, 'ir.model', | ||||||
|  |             # 'ir.model.fields'... (no interest in logging such operations) | ||||||
|  |             if self.env.context.get('auditlog_disabled'): | ||||||
|  |                 return result | ||||||
|  |             self = self.with_context(auditlog_disabled=True) | ||||||
|  |             rule_model = self.env['auditlog.rule'] | ||||||
|  |             rule_model.sudo().create_logs( | ||||||
|  |                 self.env.uid, self._name, self.ids, | ||||||
|  |                 'read', read_values, None, {'log_type': log_type}) | ||||||
|  |             return result | ||||||
|  |         return read | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def _make_write(self): | ||||||
|  |         """Instanciate a write method that log its calls.""" | ||||||
|  |         self.ensure_one() | ||||||
|  |         log_type = self.log_type | ||||||
|  | 
 | ||||||
|  |         @api.multi | ||||||
|  |         def write_full(self, vals, **kwargs): | ||||||
|  |             self = self.with_context(auditlog_disabled=True) | ||||||
|  |             rule_model = self.env['auditlog.rule'] | ||||||
|  |             old_values = dict( | ||||||
|  |                 (d['id'], d) for d in self.sudo() | ||||||
|  |                 .with_context(prefetch_fields=False).read(list(self._fields))) | ||||||
|  |             result = write_full.origin(self, vals, **kwargs) | ||||||
|  |             new_values = dict( | ||||||
|  |                 (d['id'], d) for d in self.sudo() | ||||||
|  |                 .with_context(prefetch_fields=False).read(list(self._fields))) | ||||||
|  |             rule_model.sudo().create_logs( | ||||||
|  |                 self.env.uid, self._name, self.ids, | ||||||
|  |                 'write', old_values, new_values, {'log_type': log_type}) | ||||||
|  |             return result | ||||||
|  | 
 | ||||||
|  |         @api.multi | ||||||
|  |         def write_fast(self, vals, **kwargs): | ||||||
|  |             self = self.with_context(auditlog_disabled=True) | ||||||
|  |             rule_model = self.env['auditlog.rule'] | ||||||
|  |             # Log the user input only, no matter if the `vals` is updated | ||||||
|  |             # afterwards as it could not represent the real state | ||||||
|  |             # of the data in the database | ||||||
|  |             vals2 = dict(vals) | ||||||
|  |             old_vals2 = dict.fromkeys(list(vals2.keys()), False) | ||||||
|  |             old_values = dict((id_, old_vals2) for id_ in self.ids) | ||||||
|  |             new_values = dict((id_, vals2) for id_ in self.ids) | ||||||
|  |             result = write_fast.origin(self, vals, **kwargs) | ||||||
|  |             rule_model.sudo().create_logs( | ||||||
|  |                 self.env.uid, self._name, self.ids, | ||||||
|  |                 'write', old_values, new_values, {'log_type': log_type}) | ||||||
|  |             return result | ||||||
|  | 
 | ||||||
|  |         return write_full if self.log_type == 'full' else write_fast | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def _make_unlink(self): | ||||||
|  |         """Instanciate an unlink method that log its calls.""" | ||||||
|  |         self.ensure_one() | ||||||
|  |         log_type = self.log_type | ||||||
|  | 
 | ||||||
|  |         @api.multi | ||||||
|  |         def unlink_full(self, **kwargs): | ||||||
|  |             self = self.with_context(auditlog_disabled=True) | ||||||
|  |             rule_model = self.env['auditlog.rule'] | ||||||
|  |             old_values = dict( | ||||||
|  |                 (d['id'], d) for d in self.sudo() | ||||||
|  |                 .with_context(prefetch_fields=False).read(list(self._fields))) | ||||||
|  |             rule_model.sudo().create_logs( | ||||||
|  |                 self.env.uid, self._name, self.ids, 'unlink', old_values, None, | ||||||
|  |                 {'log_type': log_type}) | ||||||
|  |             return unlink_full.origin(self, **kwargs) | ||||||
|  | 
 | ||||||
|  |         @api.multi | ||||||
|  |         def unlink_fast(self, **kwargs): | ||||||
|  |             self = self.with_context(auditlog_disabled=True) | ||||||
|  |             rule_model = self.env['auditlog.rule'] | ||||||
|  |             rule_model.sudo().create_logs( | ||||||
|  |                 self.env.uid, self._name, self.ids, 'unlink', None, None, | ||||||
|  |                 {'log_type': log_type}) | ||||||
|  |             return unlink_fast.origin(self, **kwargs) | ||||||
|  | 
 | ||||||
|  |         return unlink_full if self.log_type == 'full' else unlink_fast | ||||||
|  | 
 | ||||||
|  |     def create_logs(self, uid, res_model, res_ids, method, | ||||||
|  |                     old_values=None, new_values=None, | ||||||
|  |                     additional_log_values=None): | ||||||
|  |         """Create logs. `old_values` and `new_values` are dictionaries, e.g: | ||||||
|  |             {RES_ID: {'FIELD': VALUE, ...}} | ||||||
|  |         """ | ||||||
|  |         if old_values is None: | ||||||
|  |             old_values = EMPTY_DICT | ||||||
|  |         if new_values is None: | ||||||
|  |             new_values = EMPTY_DICT | ||||||
|  |         log_model = self.env['auditlog.log'] | ||||||
|  |         http_request_model = self.env['auditlog.http.request'] | ||||||
|  |         http_session_model = self.env['auditlog.http.session'] | ||||||
|  |         for res_id in res_ids: | ||||||
|  |             model_model = self.env[res_model] | ||||||
|  |             name = model_model.browse(res_id).name_get() | ||||||
|  |             res_name = name and name[0] and name[0][1] | ||||||
|  |             vals = { | ||||||
|  |                 'name': res_name, | ||||||
|  |                 'model_id': self.pool._auditlog_model_cache[res_model], | ||||||
|  |                 'res_id': res_id, | ||||||
|  |                 'method': method, | ||||||
|  |                 'user_id': uid, | ||||||
|  |                 'http_request_id': http_request_model.current_http_request(), | ||||||
|  |                 'http_session_id': http_session_model.current_http_session(), | ||||||
|  |             } | ||||||
|  |             vals.update(additional_log_values or {}) | ||||||
|  |             log = log_model.create(vals) | ||||||
|  |             diff = DictDiffer( | ||||||
|  |                 new_values.get(res_id, EMPTY_DICT), | ||||||
|  |                 old_values.get(res_id, EMPTY_DICT)) | ||||||
|  |             if method is 'create': | ||||||
|  |                 self._create_log_line_on_create(log, diff.added(), new_values) | ||||||
|  |             elif method is 'read': | ||||||
|  |                 self._create_log_line_on_read( | ||||||
|  |                     log, | ||||||
|  |                     list(old_values.get(res_id, EMPTY_DICT).keys()), old_values | ||||||
|  |                 ) | ||||||
|  |             elif method is 'write': | ||||||
|  |                 self._create_log_line_on_write( | ||||||
|  |                     log, diff.changed(), old_values, new_values) | ||||||
|  | 
 | ||||||
|  |     def _get_field(self, model, field_name): | ||||||
|  |         cache = self.pool._auditlog_field_cache | ||||||
|  |         if field_name not in cache.get(model.model, {}): | ||||||
|  |             cache.setdefault(model.model, {}) | ||||||
|  |             # - we use 'search()' then 'read()' instead of the 'search_read()' | ||||||
|  |             #   to take advantage of the 'classic_write' loading | ||||||
|  |             # - search the field in the current model and those it inherits | ||||||
|  |             field_model = self.env['ir.model.fields'] | ||||||
|  |             all_model_ids = [model.id] | ||||||
|  |             all_model_ids.extend(model.inherited_model_ids.ids) | ||||||
|  |             field = field_model.search( | ||||||
|  |                 [('model_id', 'in', all_model_ids), ('name', '=', field_name)]) | ||||||
|  |             # The field can be a dummy one, like 'in_group_X' on 'res.users' | ||||||
|  |             # As such we can't log it (field_id is required to create a log) | ||||||
|  |             if not field: | ||||||
|  |                 cache[model.model][field_name] = False | ||||||
|  |             else: | ||||||
|  |                 field_data = field.read(load='_classic_write')[0] | ||||||
|  |                 cache[model.model][field_name] = field_data | ||||||
|  |         return cache[model.model][field_name] | ||||||
|  | 
 | ||||||
|  |     def _create_log_line_on_read( | ||||||
|  |             self, log, fields_list, read_values): | ||||||
|  |         """Log field filled on a 'read' operation.""" | ||||||
|  |         log_line_model = self.env['auditlog.log.line'] | ||||||
|  |         for field_name in fields_list: | ||||||
|  |             if field_name in FIELDS_BLACKLIST: | ||||||
|  |                 continue | ||||||
|  |             field = self._get_field(log.model_id, field_name) | ||||||
|  |             # not all fields have an ir.models.field entry (ie. related fields) | ||||||
|  |             if field: | ||||||
|  |                 log_vals = self._prepare_log_line_vals_on_read( | ||||||
|  |                     log, field, read_values) | ||||||
|  |                 log_line_model.create(log_vals) | ||||||
|  | 
 | ||||||
|  |     def _prepare_log_line_vals_on_read(self, log, field, read_values): | ||||||
|  |         """Prepare the dictionary of values used to create a log line on a | ||||||
|  |         'read' operation. | ||||||
|  |         """ | ||||||
|  |         vals = { | ||||||
|  |             'field_id': field['id'], | ||||||
|  |             'log_id': log.id, | ||||||
|  |             'old_value': read_values[log.res_id][field['name']], | ||||||
|  |             'old_value_text': read_values[log.res_id][field['name']], | ||||||
|  |             'new_value': False, | ||||||
|  |             'new_value_text': False, | ||||||
|  |         } | ||||||
|  |         if field['relation'] and '2many' in field['ttype']: | ||||||
|  |             old_value_text = self.env[field['relation']].browse( | ||||||
|  |                 vals['old_value']).name_get() | ||||||
|  |             vals['old_value_text'] = old_value_text | ||||||
|  |         return vals | ||||||
|  | 
 | ||||||
|  |     def _create_log_line_on_write( | ||||||
|  |             self, log, fields_list, old_values, new_values): | ||||||
|  |         """Log field updated on a 'write' operation.""" | ||||||
|  |         log_line_model = self.env['auditlog.log.line'] | ||||||
|  |         for field_name in fields_list: | ||||||
|  |             if field_name in FIELDS_BLACKLIST: | ||||||
|  |                 continue | ||||||
|  |             field = self._get_field(log.model_id, field_name) | ||||||
|  |             # not all fields have an ir.models.field entry (ie. related fields) | ||||||
|  |             if field: | ||||||
|  |                 log_vals = self._prepare_log_line_vals_on_write( | ||||||
|  |                     log, field, old_values, new_values) | ||||||
|  |                 log_line_model.create(log_vals) | ||||||
|  | 
 | ||||||
|  |     def _prepare_log_line_vals_on_write( | ||||||
|  |             self, log, field, old_values, new_values): | ||||||
|  |         """Prepare the dictionary of values used to create a log line on a | ||||||
|  |         'write' operation. | ||||||
|  |         """ | ||||||
|  |         vals = { | ||||||
|  |             'field_id': field['id'], | ||||||
|  |             'log_id': log.id, | ||||||
|  |             'old_value': old_values[log.res_id][field['name']], | ||||||
|  |             'old_value_text': old_values[log.res_id][field['name']], | ||||||
|  |             'new_value': new_values[log.res_id][field['name']], | ||||||
|  |             'new_value_text': new_values[log.res_id][field['name']], | ||||||
|  |         } | ||||||
|  |         # for *2many fields, log the name_get | ||||||
|  |         if log.log_type == 'full' and field['relation'] \ | ||||||
|  |                 and '2many' in field['ttype']: | ||||||
|  |             # Filter IDs to prevent a 'name_get()' call on deleted resources | ||||||
|  |             existing_ids = self.env[field['relation']]._search( | ||||||
|  |                 [('id', 'in', vals['old_value'])]) | ||||||
|  |             old_value_text = [] | ||||||
|  |             if existing_ids: | ||||||
|  |                 existing_values = self.env[field['relation']].browse( | ||||||
|  |                     existing_ids).name_get() | ||||||
|  |                 old_value_text.extend(existing_values) | ||||||
|  |             # Deleted resources will have a 'DELETED' text representation | ||||||
|  |             deleted_ids = set(vals['old_value']) - set(existing_ids) | ||||||
|  |             for deleted_id in deleted_ids: | ||||||
|  |                 old_value_text.append((deleted_id, 'DELETED')) | ||||||
|  |             vals['old_value_text'] = old_value_text | ||||||
|  |             new_value_text = self.env[field['relation']].browse( | ||||||
|  |                 vals['new_value']).name_get() | ||||||
|  |             vals['new_value_text'] = new_value_text | ||||||
|  |         return vals | ||||||
|  | 
 | ||||||
|  |     def _create_log_line_on_create( | ||||||
|  |             self, log, fields_list, new_values): | ||||||
|  |         """Log field filled on a 'create' operation.""" | ||||||
|  |         log_line_model = self.env['auditlog.log.line'] | ||||||
|  |         for field_name in fields_list: | ||||||
|  |             if field_name in FIELDS_BLACKLIST: | ||||||
|  |                 continue | ||||||
|  |             field = self._get_field(log.model_id, field_name) | ||||||
|  |             # not all fields have an ir.models.field entry (ie. related fields) | ||||||
|  |             if field: | ||||||
|  |                 log_vals = self._prepare_log_line_vals_on_create( | ||||||
|  |                     log, field, new_values) | ||||||
|  |                 log_line_model.create(log_vals) | ||||||
|  | 
 | ||||||
|  |     def _prepare_log_line_vals_on_create(self, log, field, new_values): | ||||||
|  |         """Prepare the dictionary of values used to create a log line on a | ||||||
|  |         'create' operation. | ||||||
|  |         """ | ||||||
|  |         vals = { | ||||||
|  |             'field_id': field['id'], | ||||||
|  |             'log_id': log.id, | ||||||
|  |             'old_value': False, | ||||||
|  |             'old_value_text': False, | ||||||
|  |             'new_value': new_values[log.res_id][field['name']], | ||||||
|  |             'new_value_text': new_values[log.res_id][field['name']], | ||||||
|  |         } | ||||||
|  |         if log.log_type == 'full' and field['relation'] \ | ||||||
|  |                 and '2many' in field['ttype']: | ||||||
|  |             new_value_text = self.env[field['relation']].browse( | ||||||
|  |                 vals['new_value']).name_get() | ||||||
|  |             vals['new_value_text'] = new_value_text | ||||||
|  |         return vals | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def subscribe(self): | ||||||
|  |         """Subscribe Rule for auditing changes on model and apply shortcut | ||||||
|  |         to view logs on that model. | ||||||
|  |         """ | ||||||
|  |         act_window_model = self.env['ir.actions.act_window'] | ||||||
|  |         for rule in self: | ||||||
|  |             # Create a shortcut to view logs | ||||||
|  |             domain = "[('model_id', '=', %s), ('res_id', '=', active_id)]" % ( | ||||||
|  |                 rule.model_id.id) | ||||||
|  |             vals = { | ||||||
|  |                 'name': _("View logs"), | ||||||
|  |                 'res_model': 'auditlog.log', | ||||||
|  |                 'src_model': rule.model_id.model, | ||||||
|  |                 'binding_model_id': rule.model_id.id, | ||||||
|  |                 'domain': domain, | ||||||
|  |             } | ||||||
|  |             act_window = act_window_model.sudo().create(vals) | ||||||
|  |             rule.write({'state': 'subscribed', 'action_id': act_window.id}) | ||||||
|  |         return True | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def unsubscribe(self): | ||||||
|  |         """Unsubscribe Auditing Rule on model.""" | ||||||
|  |         # Revert patched methods | ||||||
|  |         self._revert_methods() | ||||||
|  |         for rule in self: | ||||||
|  |             # Remove the shortcut to view logs | ||||||
|  |             act_window = rule.action_id | ||||||
|  |             if act_window: | ||||||
|  |                 act_window.unlink() | ||||||
|  |         self.write({'state': 'draft'}) | ||||||
|  |         return True | ||||||
|  | @ -0,0 +1,12 @@ | ||||||
|  | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||||||
|  | access_auditlog_rule_user,auditlog_rule_user,model_auditlog_rule,base.group_user,0,0,0,0 | ||||||
|  | access_auditlog_log_user,auditlog_log_user,model_auditlog_log,base.group_user,0,0,0,0 | ||||||
|  | access_auditlog_log_line_user,auditlog_log_line_user,model_auditlog_log_line,base.group_user,0,0,0,0 | ||||||
|  | access_auditlog_http_session_user,auditlog_http_session_user,model_auditlog_http_session,base.group_user,0,0,0,0 | ||||||
|  | access_auditlog_http_request_user,auditlog_http_request_user,model_auditlog_http_request,base.group_user,0,0,0,0 | ||||||
|  | 
 | ||||||
|  | access_auditlog_rule_manager,auditlog_rule_manager,model_auditlog_rule,base.group_erp_manager,1,1,1,1 | ||||||
|  | access_auditlog_log_manager,auditlog_log_manager,model_auditlog_log,base.group_erp_manager,1,1,1,1 | ||||||
|  | access_auditlog_log_line_manager,auditlog_log_line_manager,model_auditlog_log_line,base.group_erp_manager,1,1,1,1 | ||||||
|  | access_auditlog_http_session_manager,auditlog_http_session_manager,model_auditlog_http_session,base.group_erp_manager,1,1,1,1 | ||||||
|  | access_auditlog_http_request_manager,auditlog_http_request_manager,model_auditlog_http_request,base.group_erp_manager,1,1,1,1 | ||||||
| 
 | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 22 KiB | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 15 KiB | 
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 39 KiB | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 27 KiB | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 23 KiB | 
|  | @ -0,0 +1,3 @@ | ||||||
|  | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||||||
|  | from . import test_auditlog | ||||||
|  | from . import test_autovacuum | ||||||
|  | @ -0,0 +1,121 @@ | ||||||
|  | # © 2015 Therp BV <https://therp.nl> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | from odoo.tests.common import TransactionCase | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class TestAuditlog(object): | ||||||
|  | 
 | ||||||
|  |     def test_LogCreation(self): | ||||||
|  |         """First test, caching some data.""" | ||||||
|  | 
 | ||||||
|  |         self.groups_rule.subscribe() | ||||||
|  | 
 | ||||||
|  |         auditlog_log = self.env['auditlog.log'] | ||||||
|  |         group = self.env['res.groups'].create({ | ||||||
|  |             'name': 'testgroup1', | ||||||
|  |         }) | ||||||
|  |         self.assertTrue(auditlog_log.search([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('method', '=', 'create'), | ||||||
|  |             ('res_id', '=', group.id), | ||||||
|  |         ]).ensure_one()) | ||||||
|  |         group.write({'name': 'Testgroup1'}) | ||||||
|  |         self.assertTrue(auditlog_log.search([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('method', '=', 'write'), | ||||||
|  |             ('res_id', '=', group.id), | ||||||
|  |         ]).ensure_one()) | ||||||
|  |         group.unlink() | ||||||
|  |         self.assertTrue(auditlog_log.search([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('method', '=', 'unlink'), | ||||||
|  |             ('res_id', '=', group.id), | ||||||
|  |         ]).ensure_one()) | ||||||
|  | 
 | ||||||
|  |     def test_LogCreation2(self): | ||||||
|  |         """Second test, using cached data of the first one.""" | ||||||
|  | 
 | ||||||
|  |         self.groups_rule.subscribe() | ||||||
|  | 
 | ||||||
|  |         auditlog_log = self.env['auditlog.log'] | ||||||
|  |         testgroup2 = self.env['res.groups'].create({ | ||||||
|  |             'name': 'testgroup2', | ||||||
|  |         }) | ||||||
|  |         self.assertTrue(auditlog_log.search([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('method', '=', 'create'), | ||||||
|  |             ('res_id', '=', testgroup2.id), | ||||||
|  |         ]).ensure_one()) | ||||||
|  | 
 | ||||||
|  |     def test_LogCreation3(self): | ||||||
|  |         """Third test, two groups, the latter being the parent of the former. | ||||||
|  |         Then we remove it right after (with (2, X) tuple) to test the creation | ||||||
|  |         of a 'write' log with a deleted resource (so with no text | ||||||
|  |         representation). | ||||||
|  |         """ | ||||||
|  | 
 | ||||||
|  |         self.groups_rule.subscribe() | ||||||
|  |         auditlog_log = self.env['auditlog.log'] | ||||||
|  |         testgroup3 = testgroup3 = self.env['res.groups'].create({ | ||||||
|  |             'name': 'testgroup3', | ||||||
|  |         }) | ||||||
|  |         testgroup4 = self.env['res.groups'].create({ | ||||||
|  |             'name': 'testgroup4', | ||||||
|  |             'implied_ids': [(4, testgroup3.id)], | ||||||
|  |         }) | ||||||
|  |         testgroup4.write({'implied_ids': [(2, testgroup3.id)]}) | ||||||
|  |         self.assertTrue(auditlog_log.search([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('method', '=', 'create'), | ||||||
|  |             ('res_id', '=', testgroup3.id), | ||||||
|  |         ]).ensure_one()) | ||||||
|  |         self.assertTrue(auditlog_log.search([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('method', '=', 'create'), | ||||||
|  |             ('res_id', '=', testgroup4.id), | ||||||
|  |         ]).ensure_one()) | ||||||
|  |         self.assertTrue(auditlog_log.search([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('method', '=', 'write'), | ||||||
|  |             ('res_id', '=', testgroup4.id), | ||||||
|  |         ]).ensure_one()) | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class TestAuditlogFull(TransactionCase, TestAuditlog): | ||||||
|  | 
 | ||||||
|  |     def setUp(self): | ||||||
|  |         super(TestAuditlogFull, self).setUp() | ||||||
|  |         self.groups_model_id = self.env.ref('base.model_res_groups').id | ||||||
|  |         self.groups_rule = self.env['auditlog.rule'].create({ | ||||||
|  |             'name': 'testrule for groups', | ||||||
|  |             'model_id': self.groups_model_id, | ||||||
|  |             'log_read': True, | ||||||
|  |             'log_create': True, | ||||||
|  |             'log_write': True, | ||||||
|  |             'log_unlink': True, | ||||||
|  |             'log_type': 'full', | ||||||
|  |         }) | ||||||
|  | 
 | ||||||
|  |     def tearDown(self): | ||||||
|  |         self.groups_rule.unlink() | ||||||
|  |         super(TestAuditlogFull, self).tearDown() | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class TestAuditlogFast(TransactionCase, TestAuditlog): | ||||||
|  | 
 | ||||||
|  |     def setUp(self): | ||||||
|  |         super(TestAuditlogFast, self).setUp() | ||||||
|  |         self.groups_model_id = self.env.ref('base.model_res_groups').id | ||||||
|  |         self.groups_rule = self.env['auditlog.rule'].create({ | ||||||
|  |             'name': 'testrule for groups', | ||||||
|  |             'model_id': self.groups_model_id, | ||||||
|  |             'log_read': True, | ||||||
|  |             'log_create': True, | ||||||
|  |             'log_write': True, | ||||||
|  |             'log_unlink': True, | ||||||
|  |             'log_type': 'fast', | ||||||
|  |         }) | ||||||
|  | 
 | ||||||
|  |     def tearDown(self): | ||||||
|  |         self.groups_rule.unlink() | ||||||
|  |         super(TestAuditlogFast, self).tearDown() | ||||||
|  | @ -0,0 +1,47 @@ | ||||||
|  | # © 2016 ABF OSIELL <https://osiell.com> | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | import time | ||||||
|  | 
 | ||||||
|  | from odoo.tests.common import TransactionCase | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class TestAuditlogAutovacuum(TransactionCase): | ||||||
|  | 
 | ||||||
|  |     def setUp(self): | ||||||
|  |         super(TestAuditlogAutovacuum, self).setUp() | ||||||
|  |         self.groups_model_id = self.env.ref('base.model_res_groups').id | ||||||
|  |         self.groups_rule = self.env['auditlog.rule'].create({ | ||||||
|  |             'name': 'testrule for groups', | ||||||
|  |             'model_id': self.groups_model_id, | ||||||
|  |             'log_read': True, | ||||||
|  |             'log_create': True, | ||||||
|  |             'log_write': True, | ||||||
|  |             'log_unlink': True, | ||||||
|  |             'state': 'subscribed', | ||||||
|  |             'log_type': 'full', | ||||||
|  |         }) | ||||||
|  | 
 | ||||||
|  |     def tearDown(self): | ||||||
|  |         self.groups_rule.unlink() | ||||||
|  |         super(TestAuditlogAutovacuum, self).tearDown() | ||||||
|  | 
 | ||||||
|  |     def test_autovacuum(self): | ||||||
|  |         log_model = self.env['auditlog.log'] | ||||||
|  |         autovacuum_model = self.env['auditlog.autovacuum'] | ||||||
|  |         group = self.env['res.groups'].create({ | ||||||
|  |             'name': 'testgroup1', | ||||||
|  |         }) | ||||||
|  |         nb_logs = log_model.search_count([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('res_id', '=', group.id), | ||||||
|  |         ]) | ||||||
|  |         self.assertGreater(nb_logs, 0) | ||||||
|  |         # Milliseconds are ignored by autovacuum, waiting 1s ensure that | ||||||
|  |         # the logs generated will be processed by the vacuum | ||||||
|  |         time.sleep(1) | ||||||
|  |         autovacuum_model.autovacuum(days=0) | ||||||
|  |         nb_logs = log_model.search_count([ | ||||||
|  |             ('model_id', '=', self.groups_model_id), | ||||||
|  |             ('res_id', '=', group.id), | ||||||
|  |         ]) | ||||||
|  |         self.assertEqual(nb_logs, 0) | ||||||
|  | @ -0,0 +1,201 @@ | ||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <odoo> | ||||||
|  |     <menuitem id="menu_audit" name="Audit" | ||||||
|  |         parent="base.menu_custom" sequence="50" | ||||||
|  |         groups="base.group_system"/> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |     <!-- auditlog.rule --> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.ui.view" id="view_auditlog_rule_form"> | ||||||
|  |         <field name="name">auditlog.rule.form</field> | ||||||
|  |         <field name="model">auditlog.rule</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <form string="Rule"> | ||||||
|  |                 <header> | ||||||
|  |                     <button string="Subscribe" name="subscribe" | ||||||
|  |                         type="object" states="draft" class="oe_highlight"/> | ||||||
|  |                     <button string="Unsubscribe" name="unsubscribe" | ||||||
|  |                         type="object" states="subscribed"/> | ||||||
|  |                     <field name="state" widget="statusbar"/> | ||||||
|  |                 </header> | ||||||
|  |                 <sheet> | ||||||
|  |                     <group string="Rule"> | ||||||
|  |                         <group colspan="1"> | ||||||
|  |                             <field name="name" required="1"/> | ||||||
|  |                             <field name="model_id"/> | ||||||
|  |                             <field name="log_type"/> | ||||||
|  |                             <field name="action_id" readonly="1" groups="base.group_no_one"/> | ||||||
|  |                         </group> | ||||||
|  |                         <group colspan="1"> | ||||||
|  |                             <field name="log_read"/> | ||||||
|  |                             <field name="log_write"/> | ||||||
|  |                             <field name="log_unlink"/> | ||||||
|  |                             <field name="log_create"/> | ||||||
|  |                         </group> | ||||||
|  |                     </group> | ||||||
|  |                 </sheet> | ||||||
|  |             </form> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.ui.view" id="view_auditlog_rule_tree"> | ||||||
|  |         <field name="name">auditlog.rule.tree</field> | ||||||
|  |         <field name="model">auditlog.rule</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <tree colors="blue:state == 'draft';black:state == 'subscribed'" string="Rules"> | ||||||
|  |                 <field name="name"/> | ||||||
|  |                 <field name="model_id"/> | ||||||
|  |                 <field name="log_type"/> | ||||||
|  |                 <field name="log_read"/> | ||||||
|  |                 <field name="log_write"/> | ||||||
|  |                 <field name="log_unlink"/> | ||||||
|  |                 <field name="log_create"/> | ||||||
|  |                 <field name="state"/> | ||||||
|  |             </tree> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record id="view_auditlog_rule_search" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.rule.search</field> | ||||||
|  |         <field name="model">auditlog.rule</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <search string="Rules"> | ||||||
|  |                 <field name="name"/> | ||||||
|  |                 <filter name="state_draft" | ||||||
|  |                     domain="[('state','=','draft')]" string="Draft"/> | ||||||
|  |                 <filter name="state_subscribed" | ||||||
|  |                     domain="[('state','=','subscribed')]" string="Subscribed"/> | ||||||
|  |                 <field name="model_id"/> | ||||||
|  |                 <group expand="0" string="Group By..."> | ||||||
|  |                     <filter name="group_by_state" string="State" | ||||||
|  |                         domain="[]" context="{'group_by':'state'}"/> | ||||||
|  |                 </group> | ||||||
|  |             </search> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.actions.act_window" id="action_auditlog_rule_tree"> | ||||||
|  |         <field name="name">Rules</field> | ||||||
|  |         <field name="res_model">auditlog.rule</field> | ||||||
|  |         <field name="type">ir.actions.act_window</field> | ||||||
|  |         <field name="view_type">form</field> | ||||||
|  |         <field name="view_mode">tree,form</field> | ||||||
|  |         <field name="context">{}</field> | ||||||
|  |         <field name="search_view_id" ref="view_auditlog_rule_search"/> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <menuitem id="menu_action_auditlog_rule_tree" parent="menu_audit" action="action_auditlog_rule_tree"/> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |     <!-- auditlog.log --> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.ui.view" id="view_auditlog_log_form"> | ||||||
|  |         <field name="name">auditlog.log.form</field> | ||||||
|  |         <field name="model">auditlog.log</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <form string="Log"> | ||||||
|  |                 <sheet> | ||||||
|  |                     <group string="Log"> | ||||||
|  |                         <group colspan="1"> | ||||||
|  |                             <field name="create_date" readonly="1"/> | ||||||
|  |                             <field name="user_id" readonly="1"/> | ||||||
|  |                             <field name="method" readonly="1"/> | ||||||
|  |                             <field name="log_type" readonly="1"/> | ||||||
|  |                         </group> | ||||||
|  |                         <group colspan="1"> | ||||||
|  |                             <field name="model_id" readonly="1"/> | ||||||
|  |                             <field name="res_id" readonly="1"/> | ||||||
|  |                             <field name="name" readonly="1"/> | ||||||
|  |                         </group> | ||||||
|  |                     </group> | ||||||
|  |                     <group string="HTTP Context"> | ||||||
|  |                         <field name="http_session_id"/> | ||||||
|  |                         <field name="http_request_id"/> | ||||||
|  |                     </group> | ||||||
|  |                     <group string="Fields updated"> | ||||||
|  |                         <field name="line_ids" readonly="1" nolabel="1"> | ||||||
|  |                             <form string="Log - Field updated"> | ||||||
|  |                                 <group> | ||||||
|  |                                     <field name="field_id" readonly="1"/> | ||||||
|  |                                 </group> | ||||||
|  |                                 <group string="Values" col="4"> | ||||||
|  |                                     <field name="old_value" readonly="1"/> | ||||||
|  |                                     <field name="new_value" readonly="1"/> | ||||||
|  |                                     <field name="old_value_text" readonly="1"/> | ||||||
|  |                                     <field name="new_value_text" readonly="1"/> | ||||||
|  |                                 </group> | ||||||
|  |                             </form> | ||||||
|  |                             <tree> | ||||||
|  |                                 <field name="field_description"/> | ||||||
|  |                                 <field name="field_name"/> | ||||||
|  |                                 <!--<field name="old_value"/>--> | ||||||
|  |                                 <field name="old_value_text"/> | ||||||
|  |                                 <!--<field name="new_value"/>--> | ||||||
|  |                                 <field name="new_value_text"/> | ||||||
|  |                             </tree> | ||||||
|  |                         </field> | ||||||
|  |                     </group> | ||||||
|  |                 </sheet> | ||||||
|  |             </form> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.ui.view" id="view_auditlog_log_tree"> | ||||||
|  |         <field name="name">auditlog.log.tree</field> | ||||||
|  |         <field name="model">auditlog.log</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <tree string="Logs" create="false"> | ||||||
|  |                 <field name="create_date"/> | ||||||
|  |                 <field name="name"/> | ||||||
|  |                 <field name="model_id"/> | ||||||
|  |                 <field name="res_id"/> | ||||||
|  |                 <field name="method"/> | ||||||
|  |                 <field name="user_id"/> | ||||||
|  |             </tree> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |    <record id="view_auditlog_log_search" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.log.search</field> | ||||||
|  |         <field name="model">auditlog.log</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <search string="Logs"> | ||||||
|  |                 <field name="name"/> | ||||||
|  |                 <field name="model_id"/> | ||||||
|  |                 <field name="res_id"/> | ||||||
|  |                 <field name="user_id"/> | ||||||
|  |                 <group expand="0" string="Group By..."> | ||||||
|  |                     <filter name="group_by_user_id" | ||||||
|  |                         string="User" | ||||||
|  |                         domain="[]" context="{'group_by':'user_id'}"/> | ||||||
|  |                     <filter name="group_by_model_id" | ||||||
|  |                         string="Model" | ||||||
|  |                         domain="[]" context="{'group_by':'model_id'}"/> | ||||||
|  |                     <filter name="group_by_res_id" | ||||||
|  |                         string="Resource ID" | ||||||
|  |                         domain="[]" context="{'group_by':'res_id'}"/> | ||||||
|  |                     <filter name="group_by_create_date" | ||||||
|  |                         string="Date" | ||||||
|  |                         domain="[]" context="{'group_by':'create_date'}"/> | ||||||
|  |                     <filter name="group_by_http_session" | ||||||
|  |                         string="User session" | ||||||
|  |                         domain="[]" context="{'group_by':'http_session_id'}"/> | ||||||
|  |                     <filter name="group_by_http_request" | ||||||
|  |                         string="HTTP Request" | ||||||
|  |                         domain="[]" context="{'group_by':'http_request_id'}"/> | ||||||
|  |                 </group> | ||||||
|  |             </search> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.actions.act_window" id="action_auditlog_log_tree"> | ||||||
|  |         <field name="name">Logs</field> | ||||||
|  |         <field name="res_model">auditlog.log</field> | ||||||
|  |         <field name="view_type">form</field> | ||||||
|  |         <field name="search_view_id" ref="view_auditlog_log_search"/> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <menuitem id="menu_audit_logs" name="Logs" | ||||||
|  |         parent="menu_audit" action="action_auditlog_log_tree"/> | ||||||
|  | </odoo> | ||||||
|  | @ -0,0 +1,78 @@ | ||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <odoo> | ||||||
|  |     <record id="view_auditlog_http_request_form" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.http.request.form</field> | ||||||
|  |         <field name="model">auditlog.http.request</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <form string="HTTP Request"> | ||||||
|  |                 <sheet> | ||||||
|  |                     <group string="HTTP Request"> | ||||||
|  |                         <field name="root_url"/> | ||||||
|  |                         <field name="name"/> | ||||||
|  |                         <field name="create_date"/> | ||||||
|  |                         <field name="user_context"/> | ||||||
|  |                         <field name="http_session_id"/> | ||||||
|  |                     </group> | ||||||
|  |                     <group string="Logs"> | ||||||
|  |                         <field name="log_ids" nolabel="1"/> | ||||||
|  |                     </group> | ||||||
|  |                 </sheet> | ||||||
|  |             </form> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record id="view_auditlog_http_request_tree" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.http.request.tree</field> | ||||||
|  |         <field name="model">auditlog.http.request</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <tree string="HTTP Requests"> | ||||||
|  |                 <field name="name"/> | ||||||
|  |                 <field name="create_date"/> | ||||||
|  |                 <field name="http_session_id"/> | ||||||
|  |             </tree> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record id="view_auditlog_http_request_search" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.http.request.search</field> | ||||||
|  |         <field name="model">auditlog.http.request</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <search string="HTTP Requests"> | ||||||
|  |                 <field name="create_date"/> | ||||||
|  |                 <field name="root_url"/> | ||||||
|  |                 <field name="name"/> | ||||||
|  |                 <field name="user_id"/> | ||||||
|  |                 <field name="http_session_id"/> | ||||||
|  |                 <group expand="0" string="Group By..."> | ||||||
|  |                     <filter name="group_by_root_url" | ||||||
|  |                         string="Root URL" | ||||||
|  |                         domain="[]" context="{'group_by':'root_url'}"/> | ||||||
|  |                     <filter name="group_by_name" | ||||||
|  |                         string="Path" | ||||||
|  |                         domain="[]" context="{'group_by':'name'}"/> | ||||||
|  |                     <filter name="group_by_create_date" | ||||||
|  |                         string="Created on" | ||||||
|  |                         domain="[]" context="{'group_by':'create_date'}"/> | ||||||
|  |                     <filter name="group_by_user_id" | ||||||
|  |                         string="User" | ||||||
|  |                         domain="[]" context="{'group_by':'user_id'}"/> | ||||||
|  |                     <filter name="group_by_http_session_id" | ||||||
|  |                         string="User session" | ||||||
|  |                         domain="[]" context="{'group_by':'http_session_id'}"/> | ||||||
|  |                 </group> | ||||||
|  |             </search> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.actions.act_window" id="action_auditlog_http_request_tree"> | ||||||
|  |         <field name="name">HTTP Requests</field> | ||||||
|  |         <field name="type">ir.actions.act_window</field> | ||||||
|  |         <field name="res_model">auditlog.http.request</field> | ||||||
|  |         <field name="view_type">form</field> | ||||||
|  |         <field name="view_id" ref="view_auditlog_http_request_tree"/> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <menuitem id="menu_action_auditlog_http_request_tree" | ||||||
|  |         parent="menu_audit" | ||||||
|  |         action="action_auditlog_http_request_tree"/> | ||||||
|  | </odoo> | ||||||
|  | @ -0,0 +1,65 @@ | ||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <odoo> | ||||||
|  |     <record id="view_auditlog_http_session_form" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.http.session.form</field> | ||||||
|  |         <field name="model">auditlog.http.session</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <form string="User session"> | ||||||
|  |                 <sheet> | ||||||
|  |                     <group string="User session"> | ||||||
|  |                         <field name="user_id"/> | ||||||
|  |                         <field name="create_date"/> | ||||||
|  |                         <field name="name"/> | ||||||
|  |                     </group> | ||||||
|  |                     <group string="HTTP Requests"> | ||||||
|  |                         <field name="http_request_ids" nolabel="1"/> | ||||||
|  |                     </group> | ||||||
|  |                 </sheet> | ||||||
|  |             </form> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record id="view_auditlog_http_session_tree" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.http.session.tree</field> | ||||||
|  |         <field name="model">auditlog.http.session</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <tree string="User sessions"> | ||||||
|  |                 <field name="user_id"/> | ||||||
|  |                 <field name="create_date"/> | ||||||
|  |                 <field name="name"/> | ||||||
|  |             </tree> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record id="view_auditlog_http_session_search" model="ir.ui.view"> | ||||||
|  |         <field name="name">auditlog.http.session.search</field> | ||||||
|  |         <field name="model">auditlog.http.session</field> | ||||||
|  |         <field name="arch" type="xml"> | ||||||
|  |             <search string="User sessions"> | ||||||
|  |                 <field name="user_id"/> | ||||||
|  |                 <field name="name"/> | ||||||
|  |                 <field name="create_date"/> | ||||||
|  |                 <group expand="0" string="Group By..."> | ||||||
|  |                     <filter name="group_by_user_id" | ||||||
|  |                         string="User" | ||||||
|  |                         domain="[]" context="{'group_by':'user_id'}"/> | ||||||
|  |                     <filter name="group_by_create_date" | ||||||
|  |                         string="Created on" | ||||||
|  |                         domain="[]" context="{'group_by':'create_date'}"/> | ||||||
|  |                 </group> | ||||||
|  |             </search> | ||||||
|  |         </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.actions.act_window" id="action_auditlog_http_session_tree"> | ||||||
|  |         <field name="name">User sessions</field> | ||||||
|  |         <field name="type">ir.actions.act_window</field> | ||||||
|  |         <field name="res_model">auditlog.http.session</field> | ||||||
|  |         <field name="view_type">form</field> | ||||||
|  |         <field name="view_id" ref="view_auditlog_http_session_tree"/> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <menuitem id="menu_action_auditlog_http_session_tree" | ||||||
|  |         parent="menu_audit" | ||||||
|  |         action="action_auditlog_http_session_tree"/> | ||||||
|  | </odoo> | ||||||
|  | @ -151,7 +151,8 @@ class Config(object): | ||||||
|             'mass_editing', |             'mass_editing', | ||||||
|             'tz_carrier_show_integration', |             'tz_carrier_show_integration', | ||||||
|             'base_partner_sequence', |             'base_partner_sequence', | ||||||
|             'global_discount' |             'global_discount', | ||||||
|  |             'auditlog' | ||||||
|         ] |         ] | ||||||
| 
 | 
 | ||||||
|         # Setze das Feld "Attachment" im Report (wenn gesetzt wird das PDF in den Anhängen gespeichert) |         # Setze das Feld "Attachment" im Report (wenn gesetzt wird das PDF in den Anhängen gespeichert) | ||||||
|  |  | ||||||
|  | @ -40,9 +40,9 @@ ENVIRONMENTS = { | ||||||
|     'br-tz'       : Environment('http://localhost',  '8080', 'tz-austria_1', 'tz-admin',     'x', 'admin', config = ConfigTZA()), |     'br-tz'       : Environment('http://localhost',  '8080', 'tz-austria_1', 'tz-admin',     'x', 'admin', config = ConfigTZA()), | ||||||
|     'br-glaser'   : Environment('http://localhost',  '8080', 'tz-austria_1', 'glaser-admin', 'x', 'admin', config = ConfigGlaser()), |     'br-glaser'   : Environment('http://localhost',  '8080', 'tz-austria_1', 'glaser-admin', 'x', 'admin', config = ConfigGlaser()), | ||||||
| 
 | 
 | ||||||
|     'aa'          : Environment('http://localhost',  '8080', 'tz-austria_2', 'admin',        'x', 'admin', config = ConfigTZA()), |     'aa'          : Environment('http://localhost',  '8080', 'tz-austria_1', 'admin',        'x', 'admin', config = ConfigTZA()), | ||||||
|     'aa-tz'       : Environment('http://localhost',  '8080', 'tz-austria_1', 'tz-admin',     'x', 'admin', config = ConfigTZA()), |     'aa-tz'       : Environment('http://localhost',  '8080', 'tz-austria_1', 'tz-admin',     'x', 'admin', config = ConfigTZA()), | ||||||
|     'aa-glaser'   : Environment('http://localhost',  '8080', 'tz-austria_2', 'glaser-admin', 'x', 'admin', config = ConfigGlaser()), |     'aa-glaser'   : Environment('http://localhost',  '8080', 'tz-austria_1', 'glaser-admin', 'x', 'admin', config = ConfigGlaser()), | ||||||
| 
 | 
 | ||||||
|     'rw'          : Environment('http://localhost',  '8080', 'tz-austria_1', 'admin',        'x', 'admin', config = ConfigTZA()), |     'rw'          : Environment('http://localhost',  '8080', 'tz-austria_1', 'admin',        'x', 'admin', config = ConfigTZA()), | ||||||
|     'rw-tz'       : Environment('http://localhost',  '8080', 'tz-austria_1', 'tz-admin',     'x', 'admin', config = ConfigTZA()), |     'rw-tz'       : Environment('http://localhost',  '8080', 'tz-austria_1', 'tz-admin',     'x', 'admin', config = ConfigTZA()), | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue