Merge pull request #603 from osiell/9.0-mig-auditlog
[MIG] 9.0 - auditlogpull/624/head
-
42auditlog/README.rst
-
43auditlog/__init__.py
-
31auditlog/__openerp__.py
-
18auditlog/data/ir_cron.xml
-
436auditlog/i18n/am.po
-
436auditlog/i18n/bg.po
-
436auditlog/i18n/ca.po
-
184auditlog/i18n/de.po
-
436auditlog/i18n/el_GR.po
-
204auditlog/i18n/es.po
-
436auditlog/i18n/es_ES.po
-
448auditlog/i18n/fi.po
-
189auditlog/i18n/fr.po
-
185auditlog/i18n/fr_CA.po
-
436auditlog/i18n/gl.po
-
436auditlog/i18n/hr.po
-
436auditlog/i18n/hr_HR.po
-
206auditlog/i18n/it.po
-
436auditlog/i18n/nl.po
-
436auditlog/i18n/pt.po
-
198auditlog/i18n/pt_BR.po
-
436auditlog/i18n/pt_PT.po
-
185auditlog/i18n/ru.po
-
188auditlog/i18n/sl.po
-
444auditlog/i18n/tr.po
-
436auditlog/i18n/zh_CN.po
-
26auditlog/migrations/8.0.1.0/pre-migration.py
-
24auditlog/models/__init__.py
-
41auditlog/models/autovacuum.py
-
60auditlog/models/http_request.py
-
56auditlog/models/http_session.py
-
37auditlog/models/log.py
-
187auditlog/models/rule.py
-
4auditlog/security/ir.model.access.csv
-
BINauditlog/static/description/autovacuum.png
-
BINauditlog/static/description/icon.png
-
BINauditlog/static/description/icon.xcf
-
BINauditlog/static/description/log.png
-
BINauditlog/static/description/logs.png
-
BINauditlog/static/description/rule.png
-
22auditlog/tests/__init__.py
-
81auditlog/tests/test_auditlog.py
-
48auditlog/tests/test_autovacuum.py
-
24auditlog/views/auditlog_view.xml
-
82auditlog/views/http_request_view.xml
-
69auditlog/views/http_session_view.xml
@ -1,44 +1,5 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
############################################################################## |
|
||||
# |
|
||||
# OpenERP, Open Source Management Solution |
|
||||
# Copyright (C) 2013 ABF OSIELL (<http://osiell.com>). |
|
||||
# |
|
||||
# This program is free software: you can redistribute it and/or modify |
|
||||
# it under the terms of the GNU Affero General Public License as |
|
||||
# published by the Free Software Foundation, either version 3 of the |
|
||||
# License, or (at your option) any later version. |
|
||||
# |
|
||||
# This program is distributed in the hope that it will be useful, |
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
# GNU Affero General Public License for more details. |
|
||||
# |
|
||||
# You should have received a copy of the GNU Affero General Public License |
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
# |
|
||||
############################################################################## |
|
||||
|
# © 2015 ABF OSIELL <http://osiell.com> |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
||||
|
|
||||
from . import models |
from . import models |
||||
|
|
||||
|
|
||||
def pre_init_hook(cr): |
|
||||
cr.execute("SELECT 1 FROM pg_class WHERE relname = 'audittrail_rule'") |
|
||||
if cr.fetchall(): |
|
||||
migrate_from_audittrail(cr) |
|
||||
|
|
||||
|
|
||||
def migrate_from_audittrail(cr): |
|
||||
cr.execute('ALTER TABLE audittrail_rule RENAME TO auditlog_rule') |
|
||||
cr.execute('ALTER TABLE audittrail_rule_id_seq ' |
|
||||
'RENAME TO auditlog_rule_id_seq') |
|
||||
cr.execute('ALTER TABLE auditlog_rule RENAME COLUMN object_id TO model_id') |
|
||||
cr.execute('ALTER TABLE audittrail_log RENAME TO auditlog_log') |
|
||||
cr.execute('ALTER TABLE audittrail_log_id_seq ' |
|
||||
'RENAME TO auditlog_log_id_seq') |
|
||||
cr.execute('ALTER TABLE auditlog_log RENAME COLUMN object_id TO model_id') |
|
||||
cr.execute('ALTER TABLE audittrail_log_line RENAME TO auditlog_log_line') |
|
||||
cr.execute('ALTER TABLE audittrail_log_line_id_seq ' |
|
||||
'RENAME TO auditlog_log_line_id_seq') |
|
||||
cr.execute("UPDATE ir_model_data SET model='auditlog.rule' " |
|
||||
"WHERE model='audittrail.rule'") |
|
@ -0,0 +1,18 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data 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="model">auditlog.autovacuum</field> |
||||
|
<field name="function">autovacuum</field> |
||||
|
<field name="args">(180,)</field> |
||||
|
</record> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-09 12:26+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-8-0/language/am/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: am\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-21 00:47+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-25 14:00+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/bg/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: bg\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Създадено от" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Създадено на" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "Описание" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Последно обновено на" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Последно обновено от" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Последно обновено на" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Име" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-09 12:25+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ca/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: ca\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creat per" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creat el" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Darrera Actualització per" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Darrera Actualització el" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-09 12:25+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/el_GR/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: el_GR\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Δημιουργήθηκε από " |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Δημιουργήθηκε στις" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "Κωδικός" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Τελευταία ενημέρωση από" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Τελευταία ενημέρωση στις" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-09 12:25+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_ES/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_ES\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,448 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2015 |
||||
|
# Alejandro Santana <alejandrosantana@anubia.es>, 2015 |
||||
|
# Antonio Trueba, 2016 |
||||
|
# Carles Antoli <carlesantoli@hotmail.com>, 2015 |
||||
|
# Carles Antoli <carlesantoli@hotmail.com>, 2015 |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013 |
||||
|
# Guewen Baconnier <guewen.baconnier@camptocamp.com>, 2015 |
||||
|
# Hotellook, 2014 |
||||
|
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016 |
||||
|
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016 |
||||
|
# Rudolf Schnapka <schnapkar@golive-saar.de>, 2015 |
||||
|
# SaFi J. <safi2266@gmail.com>, 2015 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-06-09 18:30+0000\n" |
||||
|
"PO-Revision-Date: 2016-06-06 13:56+0000\n" |
||||
|
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>\n" |
||||
|
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fi/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: fi\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Luonut" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Luotu" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "Kuvaus" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nimi" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Viimeksi muokattu" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Viimeksi päivittänyt" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Viimeksi päivitetty" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "Lokit" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Mall" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nimi" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "Tila" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "Käyttäjä" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "Käyttäjät" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-09 12:25+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Galician (http://www.transifex.com/oca/OCA-server-tools-8-0/language/gl/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: gl\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "ültima actualización por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-21 00:47+0000\n" |
||||
|
"PO-Revision-Date: 2016-10-05 06:35+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/hr/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: hr\n" |
||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Kreirao" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Kreirano" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Naziv " |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zadnje modificirano" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zadnje ažuriranje" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Model" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-21 00:47+0000\n" |
||||
|
"PO-Revision-Date: 2016-10-05 06:30+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/hr_HR/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: hr_HR\n" |
||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Kreirao" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Kreirano" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Naziv" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zadnje modificirano" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zadnje ažurirano" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-17 18:43+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-server-tools-8-0/language/nl/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: nl\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Te tonen naam" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Laatst bijgewerkt op" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Naam" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "Type" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-04 01:04+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-02 09:59+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: pt\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Criado por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Criado em" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última Modificação Em" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última Modificação Por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última Atualização Em" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modelo" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-09-13 11:36+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_PT/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: pt_PT\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Criado por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Criado em" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nome a Apresentar" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "Rascunho" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última Modificação Em" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última Atualização Por" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última Atualização Em" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "Método" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modelo" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -0,0 +1,444 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2016 |
||||
|
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015 |
||||
|
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015 |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012 |
||||
|
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015 |
||||
|
# Paolo Valier, 2016 |
||||
|
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015 |
||||
|
# Rudolf Schnapka <rs@techno-flex.de>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-04 19:14+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: tr\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 "" |
||||
|
|
||||
|
#. 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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "Bağlam" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Oluşturan" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Oluşturuldu" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "Tarih" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "Açıklama" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "Taslak" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Alan" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
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 "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "Grupla..." |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "HTTP Bağlamı" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "HTTP isteği" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "HTTP isteği" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Son güncellendi" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Son güncellenme" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "günlük" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "Günlük - Güncellenen alan" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "Oluşturma günlükleri" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "Silme günlükleri" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "Okuma günlükleri" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "Yazma günlükleri" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "günlükler" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "Method" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Alan" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Adı" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "Yeni Değer" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "Yeni değer metni" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "Eski Değer" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "Eski değer Metni" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "Yol" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "Kaynak ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "Kaynak Adı" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "Kök URL" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "Kural" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "Kurallar" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "Günlük oluşturmak istediğiniz modeli seçin." |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
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 |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
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 |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
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 |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "Oturum" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "Oturum ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "Durum" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "Üye ol" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "Üye oldu" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 "Bu model için zaten bir kural tanımlanmış\nbaşka kural tanımlayamazsınız: lütfen olan kaydı güncelleyin." |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "Takibi bırak" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "Kullanıcı" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "Kullanıcı oturumu" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "kullanıcı oturumları" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "Kullanıcılar" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "Değerler" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "Günlükleri göster" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
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,436 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * auditlog |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-04 19:14+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: zh_CN\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,action_id:0 |
||||
|
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 |
||||
|
#: field:auditlog.http.request,user_context:0 |
||||
|
msgid "Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_uid:0 |
||||
|
#: field:auditlog.http.request,create_uid:0 |
||||
|
#: field:auditlog.http.session,create_uid:0 field:auditlog.log,create_uid:0 |
||||
|
#: field:auditlog.log.line,create_uid:0 field:auditlog.rule,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "创建者" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,create_date:0 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,create_date:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,create_date:0 field:auditlog.log,create_date:0 |
||||
|
#: field:auditlog.log.line,create_date:0 field:auditlog.rule,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "创建时间" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "Date" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_description:0 |
||||
|
msgid "Description" |
||||
|
msgstr "Description" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,display_name:0 field:auditlog.log,display_name:0 |
||||
|
#: field:auditlog.log.line,display_name:0 field:auditlog.rule,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Display Name" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Fast log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log,line_ids:0 |
||||
|
msgid "Fields updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: selection:auditlog.log,log_type:0 selection:auditlog.rule,log_type:0 |
||||
|
msgid "Full log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_type:0 |
||||
|
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 |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
msgid "Group By..." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "HTTP Context" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,http_request_id:0 |
||||
|
msgid "HTTP Request" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_tree |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: field:auditlog.http.session,http_request_ids:0 |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_request_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_request_tree |
||||
|
msgid "HTTP Requests" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,id:0 field:auditlog.http.request,id:0 |
||||
|
#: field:auditlog.http.session,id:0 field:auditlog.log,id:0 |
||||
|
#: field:auditlog.log.line,id:0 field:auditlog.rule,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,__last_update:0 |
||||
|
#: field:auditlog.http.request,__last_update:0 |
||||
|
#: field:auditlog.http.session,__last_update:0 |
||||
|
#: field:auditlog.log,__last_update:0 field:auditlog.log.line,__last_update:0 |
||||
|
#: field:auditlog.rule,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Last Modified on" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_uid:0 |
||||
|
#: field:auditlog.http.request,write_uid:0 |
||||
|
#: field:auditlog.http.session,write_uid:0 field:auditlog.log,write_uid:0 |
||||
|
#: field:auditlog.log.line,write_uid:0 field:auditlog.rule,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "最后更新者" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.autovacuum,write_date:0 |
||||
|
#: field:auditlog.http.request,write_date:0 |
||||
|
#: field:auditlog.http.session,write_date:0 field:auditlog.log,write_date:0 |
||||
|
#: field:auditlog.log.line,write_date:0 field:auditlog.rule,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "上次更新日期" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
#: field:auditlog.log.line,log_id:0 |
||||
|
msgid "Log" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Log - Field updated" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_create:0 |
||||
|
msgid "Log Creates" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_unlink:0 |
||||
|
msgid "Log Deletes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_read:0 |
||||
|
msgid "Log Reads" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,log_write:0 |
||||
|
msgid "Log Writes" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_form |
||||
|
#: field:auditlog.http.request,log_ids:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_log_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_audit_logs |
||||
|
msgid "Logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,method:0 |
||||
|
msgid "Method" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,model_id:0 field:auditlog.rule,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,display_name:0 |
||||
|
#: field:auditlog.http.session,display_name:0 field:auditlog.rule,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value:0 |
||||
|
msgid "New Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,new_value_text:0 |
||||
|
msgid "New value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value:0 |
||||
|
msgid "Old Value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,old_value_text:0 |
||||
|
msgid "Old value Text" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,name:0 |
||||
|
msgid "Path" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,res_id:0 |
||||
|
msgid "Resource ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log,name:0 |
||||
|
msgid "Resource Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,root_url:0 |
||||
|
msgid "Root URL" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_rule_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_rule_tree |
||||
|
msgid "Rules" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,model_id:0 |
||||
|
msgid "Select model for which you want to generate log." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_create:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of creation on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_unlink:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of deletion on any record of the model" |
||||
|
" of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_write:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of modification on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,log_read:0 |
||||
|
msgid "" |
||||
|
"Select this if you want to keep track of read/open on any record of the " |
||||
|
"model of this rule" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.request,http_session_id:0 |
||||
|
#: field:auditlog.log,http_session_id:0 |
||||
|
msgid "Session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.http.session,name:0 |
||||
|
msgid "Session ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: field:auditlog.rule,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Subscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_search |
||||
|
#: selection:auditlog.rule,state:0 |
||||
|
msgid "Subscribed" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.log.line,field_name:0 |
||||
|
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 |
||||
|
#: field:auditlog.log,log_type:0 field:auditlog.rule,log_type:0 |
||||
|
msgid "Type" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.rule:auditlog.view_auditlog_rule_form |
||||
|
msgid "Unsubscribe" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: field:auditlog.http.request,user_id:0 |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: field:auditlog.http.session,user_id:0 |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
#: field:auditlog.log,user_id:0 |
||||
|
msgid "User" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.request:auditlog.view_auditlog_http_request_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_form |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_search |
||||
|
msgid "User session" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_search |
||||
|
#: view:auditlog.http.session:auditlog.view_auditlog_http_session_tree |
||||
|
#: model:ir.actions.act_window,name:auditlog.action_auditlog_http_session_tree |
||||
|
#: model:ir.ui.menu,name:auditlog.menu_action_auditlog_http_session_tree |
||||
|
msgid "User sessions" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: field:auditlog.rule,user_ids:0 |
||||
|
msgid "Users" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: view:auditlog.log:auditlog.view_auditlog_log_form |
||||
|
msgid "Values" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: code:addons/auditlog/models/rule.py:538 |
||||
|
#, python-format |
||||
|
msgid "View logs" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: auditlog |
||||
|
#: help:auditlog.rule,user_ids:0 |
||||
|
msgid "if User is not added then it will applicable for all users" |
||||
|
msgstr "" |
@ -1,26 +0,0 @@ |
|||||
# -*- coding: utf-8 -*- |
|
||||
############################################################################## |
|
||||
# |
|
||||
# OpenERP, Open Source Management Solution |
|
||||
# This module copyright (C) 2015 Therp BV (<http://therp.nl>). |
|
||||
# |
|
||||
# This program is free software: you can redistribute it and/or modify |
|
||||
# it under the terms of the GNU Affero General Public License as |
|
||||
# published by the Free Software Foundation, either version 3 of the |
|
||||
# License, or (at your option) any later version. |
|
||||
# |
|
||||
# This program is distributed in the hope that it will be useful, |
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
# GNU Affero General Public License for more details. |
|
||||
# |
|
||||
# You should have received a copy of the GNU Affero General Public License |
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
# |
|
||||
############################################################################## |
|
||||
from openerp.addons.auditlog import migrate_from_audittrail |
|
||||
|
|
||||
|
|
||||
def migrate(cr, version): |
|
||||
"""if we migrate from an older version, it's a migration from audittrail""" |
|
||||
migrate_from_audittrail(cr) |
|
@ -1,23 +1,9 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
############################################################################## |
|
||||
# |
|
||||
# OpenERP, Open Source Management Solution |
|
||||
# Copyright (C) 2013 ABF OSIELL (<http://osiell.com>). |
|
||||
# |
|
||||
# This program is free software: you can redistribute it and/or modify |
|
||||
# it under the terms of the GNU Affero General Public License as |
|
||||
# published by the Free Software Foundation, either version 3 of the |
|
||||
# License, or (at your option) any later version. |
|
||||
# |
|
||||
# This program is distributed in the hope that it will be useful, |
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
# GNU Affero General Public License for more details. |
|
||||
# |
|
||||
# You should have received a copy of the GNU Affero General Public License |
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
# |
|
||||
############################################################################## |
|
||||
|
# © 2015 ABF OSIELL <http://osiell.com> |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
||||
|
|
||||
from . import rule |
from . import rule |
||||
|
from . import http_session |
||||
|
from . import http_request |
||||
from . import log |
from . import log |
||||
|
from . import autovacuum |
@ -0,0 +1,41 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# © 2016 ABF OSIELL <http://osiell.com> |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
||||
|
import logging |
||||
|
from datetime import datetime, timedelta |
||||
|
|
||||
|
from openerp 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( |
||||
|
u"AUTOVACUUM - %s '%s' records deleted", |
||||
|
nb_records, data_model) |
||||
|
return True |
@ -0,0 +1,60 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# © 2015 ABF OSIELL <http://osiell.com> |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
||||
|
|
||||
|
from openerp import models, fields, api |
||||
|
from openerp.http import request |
||||
|
|
||||
|
|
||||
|
class AuditlogHTTPRequest(models.Model): |
||||
|
_name = 'auditlog.http.request' |
||||
|
_description = u"Auditlog - HTTP request log" |
||||
|
_order = "create_date DESC" |
||||
|
_rec_name = 'display_name' |
||||
|
|
||||
|
display_name = fields.Char(u"Name", compute="_compute_display_name") |
||||
|
name = fields.Char(u"Path") |
||||
|
root_url = fields.Char(u"Root URL") |
||||
|
user_id = fields.Many2one( |
||||
|
'res.users', string=u"User") |
||||
|
http_session_id = fields.Many2one( |
||||
|
'auditlog.http.session', string=u"Session") |
||||
|
user_context = fields.Char(u"Context") |
||||
|
log_ids = fields.One2many( |
||||
|
'auditlog.log', 'http_request_id', string=u"Logs") |
||||
|
|
||||
|
@api.multi |
||||
|
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 = u"%s (%s)" % ( |
||||
|
httprequest.name or '?', |
||||
|
fields.Datetime.to_string(tz_create_date)) |
||||
|
|
||||
|
@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'): |
||||
|
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,56 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# © 2015 ABF OSIELL <http://osiell.com> |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
||||
|
|
||||
|
from openerp import models, fields, api |
||||
|
from openerp.http import request |
||||
|
|
||||
|
|
||||
|
class AuditlogtHTTPSession(models.Model): |
||||
|
_name = 'auditlog.http.session' |
||||
|
_description = u"Auditlog - HTTP User session log" |
||||
|
_order = "create_date DESC" |
||||
|
_rec_name = 'display_name' |
||||
|
|
||||
|
display_name = fields.Char(u"Name", compute="_compute_display_name") |
||||
|
name = fields.Char(u"Session ID", index=True) |
||||
|
user_id = fields.Many2one( |
||||
|
'res.users', string=u"User", index=True) |
||||
|
http_request_ids = fields.One2many( |
||||
|
'auditlog.http.request', 'http_session_id', string=u"HTTP Requests") |
||||
|
|
||||
|
@api.multi |
||||
|
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 = u"%s (%s)" % ( |
||||
|
httpsession.user_id and httpsession.user_id.name or '?', |
||||
|
fields.Datetime.to_string(tz_create_date)) |
||||
|
|
||||
|
@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.httpsession |
||||
|
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 |
After Width: 756 | Height: 330 | Size: 21 KiB |
Before Width: 128 | Height: 128 | Size: 9.2 KiB After Width: 128 | Height: 128 | Size: 15 KiB |
After Width: 756 | Height: 522 | Size: 41 KiB |
After Width: 757 | Height: 265 | Size: 33 KiB |
After Width: 757 | Height: 378 | Size: 22 KiB |
@ -1,21 +1,5 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
############################################################################## |
|
||||
# |
|
||||
# OpenERP, Open Source Management Solution |
|
||||
# This module copyright (C) 2015 Therp BV (<http://therp.nl>). |
|
||||
# |
|
||||
# This program is free software: you can redistribute it and/or modify |
|
||||
# it under the terms of the GNU Affero General Public License as |
|
||||
# published by the Free Software Foundation, either version 3 of the |
|
||||
# License, or (at your option) any later version. |
|
||||
# |
|
||||
# This program is distributed in the hope that it will be useful, |
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
# GNU Affero General Public License for more details. |
|
||||
# |
|
||||
# You should have received a copy of the GNU Affero General Public License |
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
# |
|
||||
############################################################################## |
|
||||
|
# © 2015 Therp BV <http://therp.nl> |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
||||
from . import test_auditlog |
from . import test_auditlog |
||||
|
from . import test_autovacuum |
@ -0,0 +1,48 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# © 2016 ABF OSIELL <http://osiell.com> |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
||||
|
import time |
||||
|
|
||||
|
from openerp.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,82 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<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"/> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
@ -0,0 +1,69 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<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"/> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |