Merge pull request #171 from vauxoo-dev/11.0-mig-document_page_approval

[11.0][MIG] document_page_approval: Migration to v11.0
This commit is contained in:
Moises Lopez - https://www.vauxoo.com/ 2018-07-09 11:54:53 -05:00 committed by GitHub
commit 50e2506791
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
85 changed files with 17520 additions and 0 deletions

View File

@ -0,0 +1,76 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
======================
Document Page Approval
======================
This module adds a workflow to approve page modifications and show the approved version by default.
Installation
============
No specific installation required.
Configuration
=============
* Set a valid email address on the company settings.
* Go to Knowledge > Categories.
* Create a new page category and set an approver group. Make sure users belonging to that group have valid email
addresses.
Usage
=====
To use this module, you need to:
* Go to Knowledge > Pages
* Create a new page and choose the previously created category.
* A notification is sent to the approvers group with a link to the page history to review.
* Depending on the review, the page history is approved or not.
* Users reading the page see the last approved version.
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/118/11.0
Known issues / Roadmap
======================
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/
knowledge/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here <https://github.com/OCA/knowledge/issues/new?body=module:%20document_page_approval%0Aversion:%2010.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Credits
=======
Contributors
------------
* Odoo SA <info@odoo.com>
* Savoir-faire Linux <support@savoirfairelinux.com>
* Gervais Naoussi <gervaisnaoussi@gmail.com>
* Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
* Iván Todorovich <ivan.todorovich@gmail.com>
Maintainer
----------
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
To contribute to this module, please visit https://odoo-community.org.

View File

@ -0,0 +1,5 @@
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models
from .hooks import post_init_hook, uninstall_hook

View File

@ -0,0 +1,29 @@
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Document Page Approval',
'version': '11.0.1.0.0',
"author": "Savoir-faire Linux, Odoo Community Association (OCA)",
"website": "http://www.savoirfairelinux.com",
"license": "AGPL-3",
'category': 'Knowledge Management',
'depends': [
'document_page',
'mail',
],
'data': [
'data/email_template.xml',
'views/document_page_approval.xml',
'security/document_page_security.xml',
'security/ir.model.access.csv',
],
'images': [
'images/category.png',
'images/page_history_list.png',
'images/page_history.png',
],
'post_init_hook': 'post_init_hook',
'uninstall_hook': 'uninstall_hook',
'installable': True,
}

View File

@ -0,0 +1,43 @@
<?xml version="1.0"?>
<odoo>
<!-- If user wants to make upgrade-proof customizations to email templates, he should edit ir.model.data and check noupdate himself -->
<record id="email_template_new_draft_need_approval" model="mail.template">
<field name="name">Automated new draft need approval Notification Mail</field>
<field name="email_from">${object.create_uid.company_id.email or 'noreply@localhost.com'}</field>
<field name="subject">New version of ${object.display_name} needs your approval</field>
<field name="model_id" ref="model_document_page_history"/>
<field name="auto_delete" eval="True"/>
<field name="lang">${object.create_uid.partner_id.lang}</field>
<field name="body_html">
<![CDATA[
<p>Hello,</p>
<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>
<h1><a href="${object.page_url}">${object.display_name}</a></h1>
<p>
<b>Modified by:</b> ${object.create_uid.name}<br/>
<b>Date:</b> ${object.create_date}<br>
</p>
% if object.summary:
<h3>Summary</h3>
<p>${object.summary}</p>
% endif
<h3>Diff</h3>
<div style="overflow-x:scroll; font-size:0.85em; margin-bottom:2em;">
${object.diff|safe}
</div>
<p>Have a great day.</p>
--<br/>
<p>Odoo</p>
]]>
</field>
</record>
</odoo>

View File

@ -0,0 +1,21 @@
# Copyright 2018 Ivan Todorovich (<ivan.todorovich@gmail.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
def post_init_hook(cr, registry): # pragma: no cover
# Set all pre-existing pages history to approved
cr.execute("""
UPDATE document_page_history
SET state='approved',
approved_uid=create_uid,
approved_date=create_date
WHERE state IS NULL
""")
def uninstall_hook(cr, registry): # pragma: no cover
# Remove unapproved pages
cr.execute(
"DELETE FROM document_page_history "
"WHERE state != 'approved'"
)

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "መሰረዝ"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "إلغاء"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Откажи"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: bs\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Otkaži"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancel·la"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Zrušit"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Annuller"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Freigeben"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Freigegeben"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Freigabedatum"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Freigabegruppe"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Abbrechen"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Dokumentenseite"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Dokumenten Seite Historie"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Entwurf"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "Neue Fassung des Dokuments %s freigegeben."
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Freigabe anfordern"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Status"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Ακύρωση"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: en_AU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancel"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancel"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Aprobar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Aprobado"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Fecha de aprobación"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Grupo aprobador"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Borrador"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "Nueva versión del documento %s aprobada."
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Requiere aprobación"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Estado"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Aprobar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Aprobado"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Fecha de aprobación"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Grupo aprobador"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Borrador"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "Nueva versión del documento %s aprobada."
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Requiere aprobación"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Estado"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_DO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_EC\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_MX\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_PY\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_VE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Loobu"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Ezeztatu"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "لغو"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Peruuta"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Dokumentin sivu"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Dokumentin sivuhistoria"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Approuver"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Approuvée"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Date d'approbation"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Groupe approbateur"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Annuler"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Page"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Historique de la page"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Brouillon"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Nécessite une approbation"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Statut"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr_CA\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Annuler"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "રદ કરો"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "בטל"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "रद्द"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,243 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Bole <bole@dajmi5.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Odobri"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Odobreno"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Datum odobravanja"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Grupa odobravatelja"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Odustani"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Stranica dokumenata"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Povijest stranica Dokumenata"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Nacrt"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "Nova verzija dokumenta %s odobrena"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Zahtijeva odobrenje"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Status"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Mégsem"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Documentum oldal"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Dokumantum oldal előzmény"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Armenian (https://www.transifex.com/oca/teams/23907/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hy\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Հրաժարվել"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Batalkan"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,243 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Marco Calcagni <mcalcagni@dinamicheaziendali.it>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: Marco Calcagni <mcalcagni@dinamicheaziendali.it>, 2018\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Approvare"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Approvato"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Data di approvazione"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Gruppo che approva"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Annulla"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Pagina documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Cronologia Pagina Documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Bozza"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "La nuova versione del documento %s è approvata."
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Richiede approvazione"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Stato"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "取消"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Georgian (https://www.transifex.com/oca/teams/23907/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ka\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "შეწყვეტა"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Kabyle (https://www.transifex.com/oca/teams/23907/kab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: kab\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Sefsex"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Kazakh (https://www.transifex.com/oca/teams/23907/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: kk\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Бас тарту"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "취소"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Lingala (https://www.transifex.com/oca/teams/23907/ln/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ln\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Tika"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lo\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "ຍົກເລີອກ"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lt\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Atšaukti"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Atcelt"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Откажи"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Страница на документ"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Историја на страница на документ"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Цуцлах"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Баримтын Хуудас"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Баримтын Хуудасны Түүх"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Avbryt"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,243 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Michel V. <m.vorenhout@mvhconsult.nl>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: Michel V. <m.vorenhout@mvhconsult.nl>, 2018\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Accordeer"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Geaccordeerd"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Geaccordeerd op"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Annuleren"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Document pagina"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Document pagina historie"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Behoeft accordering"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl_BE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Afbreken"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# Peter Hageman <hageman.p@gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2018\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl_NL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Goedkeuren"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Goedgekeurd"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Goedkeuringsdatum"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Goedkeuringsgroep"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Annuleer"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Documentpagina"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Documentpagina-historie"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Concept"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Anuluj"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Strona dokumentu"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Historia strony dokumentu"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,243 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# Pedro Castro Silva <inactive+pcs.sossia@transifex.com>, 2018
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Aprovar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Aprovado"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Data de Aprovação"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Grupo de Aprovadores"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Página do Documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Histórico da Página do Documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Rascunho"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "Uma nova versão do ocumento %s foi aprovada."
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Requer aprovação"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Estado"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Página do Documento"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Histórico da Página de Documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Aprovar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Aprovada"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Data de Aprovação"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Grupo do Aprovador"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Histórico da Página do Documento"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Rascunho"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "Foi aprovada a nova versão do documento %s."
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Aprovação Requerida"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Estado"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Anulează"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Pagina Documentului"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Istoric Pagini Documente"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Отменить"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Страница документа"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "История страницы документа"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Zrušiť"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr "Odobri"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr "Odobreno"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr "Datum odobritve"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr "Skupina pooblaščenih za odobritev"
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Preklic"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Stran dokumenta"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Zgodovina strani dokumentov"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr "Osnutek"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr "Nova verzija dokumenta %s odobrena."
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr "Zahtevana odobritev"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr "Status"
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr "URL"
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Otkaži"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Otkaži"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Avbryt"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Dokumentsida"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Dokumentets sidhistorik"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "ยกเลิก"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "İptal"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr "Belge Sayfası"
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr "Belge Sayfa Geçmişi"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: uk\n"
"Plural-Forms: nplurals=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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Скасувати"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "Hủy bỏ"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/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: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "取消"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

View File

@ -0,0 +1,242 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: document_page_approval
#: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid ""
"\n"
" \n"
"<p>Hello,</p>\n"
"\n"
"<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"\n"
"<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"<p>\n"
"<b>Modified by:</b> ${object.create_uid.name}<br/>\n"
"<b>Date:</b> ${object.create_date}<br>\n"
"</p>\n"
"\n"
"% if object.summary:\n"
"<h3>Summary</h3>\n"
"<p>${object.summary}</p>\n"
"% endif\n"
"\n"
"<h3>Diff</h3>\n"
"<div style=\"overflow-x:scroll; font-size:0.85em; margin-bottom:2em;\">\n"
"${object.diff|safe}\n"
"</div>\n"
"\n"
"<p>Have a great day.</p>\n"
"\n"
"--<br/>\n"
"\n"
"<p>Odoo</p>\n"
" \n"
" "
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_am_i_approver
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_approver
msgid "Am i approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
msgid "Am i owner"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
msgid "Approval required"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
msgid "Approved by"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
#: model:res.groups,name:document_page_approval.group_document_approver_user
msgid "Approver"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
msgid "Approver group"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
msgid "Approver groups"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Back to draft"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Cancel"
msgstr "取消"
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Cancelled"
msgstr ""
#. module: document_page_approval
#: model:ir.actions.act_window,name:document_page_approval.action_change_requests
#: model:ir.ui.menu,name:document_page_approval.menu_page_change_requests
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid "Change Requests"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:109
#, python-format
msgid "Change request <b>%s</b> has been cancelled by %s."
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:90
#, python-format
msgid "Change request has been approved by %s."
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "Groups that can approve changes to this document"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
msgid "Has changes pending approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
msgid "If true, changes of this page require approval"
msgstr ""
#. module: document_page_approval
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of ${object.display_name} needs your approval"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/models/document_page_history_workflow.py:97
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Pending Approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
msgid "Require approval for changes on this page or its child pages."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
msgid "Send to Review"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "State"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
msgid "Status"
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
"approved content."
msgstr ""
#. module: document_page_approval
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
msgid ""
"This document requires approval. If edited, you will create a new <b>Change "
"Request</b>."
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
msgid "URL"
msgstr ""
#. module: document_page_approval
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_gid
msgid "Users must also belong to the Approvers group"
msgstr ""

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@ -0,0 +1 @@
from . import document_page_approval, document_page_history_workflow

View File

@ -0,0 +1,136 @@
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import api, fields, models
from ast import literal_eval
class DocumentPageApproval(models.Model):
"""Useful to know the state of a document."""
_inherit = 'document.page'
history_ids = fields.One2many(
order='approved_date DESC',
domain=[('state', '=', 'approved')],
)
approved_date = fields.Datetime(
'Approved Date',
related='history_head.approved_date',
store=True,
index=True,
readonly=True,
)
approved_uid = fields.Many2one(
'res.users',
'Approved by',
related='history_head.approved_uid',
store=True,
index=True,
readonly=True,
)
approval_required = fields.Boolean(
'Require approval',
help='Require approval for changes on this page or its child pages.',
)
approver_gid = fields.Many2one(
"res.groups",
"Approver group",
help='Users must also belong to the Approvers group',
)
is_approval_required = fields.Boolean(
'Approval required',
help='If true, changes of this page require approval',
compute='_compute_is_approval_required',
)
am_i_approver = fields.Boolean(
compute='_compute_am_i_approver'
)
approver_group_ids = fields.Many2many(
'res.groups',
string='Approver groups',
help='Groups that can approve changes to this document',
compute='_compute_approver_group_ids',
)
has_changes_pending_approval = fields.Boolean(
compute='_compute_has_changes_pending_approval',
string='Has changes pending approval'
)
@api.multi
@api.depends('approval_required', 'parent_id.is_approval_required')
def _compute_is_approval_required(self):
"""Check if the document required approval based on his parents."""
for page in self:
res = page.approval_required
if page.parent_id:
res = res or page.parent_id.is_approval_required
page.is_approval_required = res
@api.multi
@api.depends('approver_gid', 'parent_id.approver_group_ids')
def _compute_approver_group_ids(self):
"""Compute the approver groups based on his parents."""
for page in self:
res = page.approver_gid
if page.parent_id:
res = res | page.parent_id.approver_group_ids
page.approver_group_ids = res
@api.multi
@api.depends('is_approval_required', 'approver_group_ids')
def _compute_am_i_approver(self):
"""Check if the current user can approve changes to this page."""
for rec in self:
rec.am_i_approver = rec.can_user_approve_this_page(self.env.user)
@api.multi
def can_user_approve_this_page(self, user):
"""Check if a user can approve this page."""
self.ensure_one()
# if it's not required, anyone can approve
if not self.is_approval_required:
return True
# to approve, you must have approver rights
approver_group_id = self.env.ref(
'document_page_approval.group_document_approver_user')
if approver_group_id not in user.groups_id:
return False
# and belong to at least one of the approver_groups (if any is set)
if not self.approver_group_ids:
return True
return len(user.groups_id & self.approver_group_ids) > 0
@api.multi
def _compute_has_changes_pending_approval(self):
history = self.env['document.page.history']
for rec in self:
changes = history.search_count([
('page_id', '=', rec.id),
('state', '=', 'to approve')])
rec.has_changes_pending_approval = (changes > 0)
@api.multi
def _create_history(self, vals):
res = super(DocumentPageApproval, self)._create_history(vals)
res.document_page_auto_confirm()
@api.multi
def action_changes_pending_approval(self):
self.ensure_one()
action = self.env.ref('document_page_approval.action_change_requests')
action = action.read()[0]
context = literal_eval(action['context'])
context['search_default_page_id'] = self.id
context['default_page_id'] = self.id
action['context'] = context
return action

View File

@ -0,0 +1,178 @@
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from datetime import datetime
from odoo.tools.translate import _
from odoo.tools import DEFAULT_SERVER_DATETIME_FORMAT
from odoo import api, fields, models
from odoo.exceptions import UserError
class DocumentPageHistoryWorkflow(models.Model):
"""Useful to manage edition's workflow on a document."""
_name = 'document.page.history'
_inherit = ['document.page.history', 'mail.thread']
state = fields.Selection([
('draft', 'Draft'),
('to approve', 'Pending Approval'),
('approved', 'Approved'),
('cancelled', 'Cancelled')],
'Status',
readonly=True,
default='draft'
)
approved_date = fields.Datetime(
'Approved Date',
)
approved_uid = fields.Many2one(
'res.users',
'Approved by',
)
is_approval_required = fields.Boolean(
related='page_id.is_approval_required',
string="Approval required",
)
am_i_owner = fields.Boolean(
compute='_compute_am_i_owner'
)
am_i_approver = fields.Boolean(
compute='_compute_am_i_approver'
)
page_url = fields.Text(
compute='_compute_page_url',
string="URL",
)
@api.multi
def page_approval_draft(self):
"""Set a change request as draft"""
if self.filtered(lambda r: r.state not in [
'cancelled', 'approved']):
raise UserError(_("It's not cancelled or approved"))
if self.filtered(lambda r:
r.state == 'approved' and not self.am_i_approver):
raise UserError(_("You are not an appover to reset to draft"))
self.write({'state': 'draft'})
@api.multi
def document_page_auto_confirm(self):
"""Automatic Transitions for change requests created directly from
documents
"""
if self.filtered(lambda r: r.state != 'draft'):
raise UserError(_("It's not in draft state"))
to_approve = self.filtered(lambda r: r.is_approval_required)
to_approve.write({'state': 'to approve'})
approved = (self - to_approve)
approved.write({'state': 'approved'})
approved.mapped('page_id')._compute_history_head()
@api.multi
def page_approval_to_approve(self):
"""Set a change request as to approve"""
self.write({'state': 'to approve'})
template = self.env.ref(
'document_page_approval.email_template_new_draft_need_approval')
approver_gid = self.env.ref(
'document_page_approval.group_document_approver_user')
for rec in self:
if rec.is_approval_required:
guids = [g.id for g in rec.page_id.approver_group_ids]
users = self.env['res.users'].search([
('groups_id', 'in', guids),
('groups_id', 'in', approver_gid.id)])
rec.message_subscribe_users([u.id for u in users])
rec.message_post_with_template(template.id)
@api.multi
def page_approval_approved(self):
"""Set a change request as approved."""
self.write({
'state': 'approved',
'approved_date': datetime.now().strftime(
DEFAULT_SERVER_DATETIME_FORMAT),
'approved_uid': self.env.uid
})
for rec in self:
# Trigger computed field update
rec.page_id._compute_history_head()
# Notify state change
rec.message_post(
subtype='mt_comment',
body=_(
'Change request has been approved by %s.'
) % (self.env.user.name)
)
# Notify followers a new version is available
rec.page_id.message_post(
subtype='mt_comment',
body=_(
'New version of the document %s approved.'
) % (rec.page_id.name)
)
@api.multi
def page_approval_cancelled(self):
"""Set a change request as cancelled."""
self.write({'state': 'cancelled'})
for rec in self:
rec.message_post(
subtype='mt_comment',
body=_(
'Change request <b>%s</b> has been cancelled by %s.'
) % (rec.display_name, self.env.user.name)
)
@api.multi
def _compute_am_i_owner(self):
"""Check if current user is the owner"""
for rec in self:
rec.am_i_owner = (rec.create_uid == self.env.user)
@api.multi
def _compute_am_i_approver(self):
"""check if current user is a approver"""
for rec in self:
rec.am_i_approver = rec.page_id.can_user_approve_this_page(
self.env.user)
@api.multi
def _compute_page_url(self):
"""Compute the page url."""
for page in self:
base_url = self.env['ir.config_parameter'].sudo().get_param(
'web.base.url',
default='http://localhost:8069'
)
page.page_url = (
'{}/web#db={}&id={}&view_type=form&'
'model=document.page.history').format(
base_url,
self.env.cr.dbname,
page.id
)
@api.multi
def _compute_diff(self):
"""Shows a diff between this version and the previous version"""
history = self.env['document.page.history']
for rec in self:
domain = [
('page_id', '=', rec.page_id.id),
('state', '=', 'approved')]
if rec.approved_date:
domain.append(('approved_date', '<', rec.approved_date))
prev = history.search(domain, limit=1, order='approved_date DESC')
if prev:
rec.diff = self.getDiff(prev.id, rec.id)
else:
rec.diff = self.getDiff(False, rec.id)

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="group_document_approver_user" model="res.groups">
<field name="name">Approver</field>
<field name="category_id" ref="knowledge.module_category_knowledge"/>
<field name="implied_ids" eval="[(4, ref('document_page.group_document_editor'))]"/>
</record>
<record id="document_page.group_document_manager" model="res.groups">
<field name="implied_ids" eval="[(4, ref('group_document_approver_user'))]"/>
</record>
</odoo>

View File

@ -0,0 +1 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink

View File

@ -0,0 +1 @@
from . import test_document_page_approval

View File

@ -0,0 +1,124 @@
from odoo.tests import common
class TestDocumentPageApproval(common.TransactionCase):
def setUp(self):
super(TestDocumentPageApproval, self).setUp()
self.page_obj = self.env['document.page']
self.history_obj = self.env['document.page.history']
# demo
self.category1 = self.env.ref('document_page.demo_category1')
self.page1 = self.env.ref('document_page.demo_page1')
self.approver_gid = self.env.ref(
'document_page_approval.group_document_approver_user')
# demo_approval
self.category2 = self.page_obj.create({
'name': 'This category requires approval',
'type': 'category',
'approval_required': True,
'approver_gid': self.approver_gid.id,
})
self.page2 = self.page_obj.create({
'name': 'This page requires approval',
'parent_id': self.category2.id,
'content': 'This content will require approval',
})
def test_approval_required(self):
page = self.page2
self.assertTrue(page.is_approval_required)
self.assertTrue(page.has_changes_pending_approval)
self.assertEqual(len(page.history_ids), 0)
def test_change_request_approve(self):
page = self.page2
chreq = self.history_obj.search([
('page_id', '=', page.id),
('state', '!=', 'approved')
])[0]
# It should automatically be in 'to approve' state
self.assertEqual(chreq.state, 'to approve')
self.assertNotEqual(chreq.content, page.content)
# who_am_i
self.assertTrue(chreq.am_i_owner)
self.assertTrue(chreq.am_i_approver)
# approve
chreq.page_approval_approved()
self.assertEqual(chreq.state, 'approved')
self.assertEqual(chreq.content, page.content)
# new changes should create change requests
page.write({'content': 'New content'})
self.assertNotEqual(page.content, 'New content')
chreq = self.history_obj.search([
('page_id', '=', page.id),
('state', '!=', 'approved')
])[0]
chreq.page_approval_approved()
self.assertEqual(page.content, 'New content')
def test_change_request_auto_approve(self):
page = self.page1
self.assertFalse(page.is_approval_required)
page.write({'content': 'New content'})
self.assertEqual(page.content, 'New content')
def test_change_request_from_scratch(self):
page = self.page2
# aprove everything
self.history_obj.search([
('page_id', '=', page.id),
('state', '!=', 'approved')
]).page_approval_approved()
# new change request from scrath
chreq = self.history_obj.create({
'page_id': page.id,
'summary': 'Changed something',
'content': 'New content',
})
self.assertEqual(chreq.state, 'draft')
self.assertNotEqual(page.content, chreq.content)
self.assertNotEqual(page.approved_date, chreq.approved_date)
self.assertNotEqual(page.approved_uid, chreq.approved_uid)
chreq.page_approval_to_approve()
self.assertEqual(chreq.state, 'to approve')
self.assertNotEqual(page.content, chreq.content)
self.assertNotEqual(page.approved_date, chreq.approved_date)
self.assertNotEqual(page.approved_uid, chreq.approved_uid)
chreq.page_approval_cancelled()
self.assertEqual(chreq.state, 'cancelled')
self.assertNotEqual(page.content, chreq.content)
self.assertNotEqual(page.approved_date, chreq.approved_date)
self.assertNotEqual(page.approved_uid, chreq.approved_uid)
chreq.page_approval_draft()
self.assertEqual(chreq.state, 'draft')
self.assertNotEqual(page.content, chreq.content)
self.assertNotEqual(page.approved_date, chreq.approved_date)
self.assertNotEqual(page.approved_uid, chreq.approved_uid)
chreq.page_approval_approved()
self.assertEqual(chreq.state, 'approved')
self.assertEqual(page.content, chreq.content)
self.assertEqual(page.approved_date, chreq.approved_date)
self.assertEqual(page.approved_uid, chreq.approved_uid)
def test_get_approvers_guids(self):
"""Get approver guids."""
page = self.page2
self.assertTrue(len(page.approver_group_ids) > 0)
def test_get_page_url(self):
"""Test if page url exist."""
pages = self.env['document.page.history'].search([])
page = pages[0]
self.assertIsNotNone(page.page_url)

View File

@ -0,0 +1,189 @@
<?xml version="1.0"?>
<odoo>
<!-- History Form View -->
<record id="wiki_history_form_inherit" model="ir.ui.view">
<field name="name">document.page.history.form</field>
<field name="model">document.page.history</field>
<field name="inherit_id" ref="document_page.wiki_history_form"/>
<field name="arch" type="xml">
<sheet position="before">
<header>
<!-- draft -> to approve -->
<button name="page_approval_to_approve" type="object" string="Send to Review" state="draft" class="oe_highlight"
attrs="{'invisible':['|','|',('is_approval_required','=',False),('am_i_owner','=',False),('state', 'not in', ['draft'])]}"/>
<!-- approve if i am approver -->
<button name="page_approval_approved" type="object" string="Approve" state="to aprrove" class="oe_highlight"
attrs="{'invisible':['|','|',('is_approval_required','=',False),('am_i_approver','=',False),('state','not in',['draft','to approve'])]}"/>
<!-- approve if it's not required and i am owner -->
<button name="page_approval_approved" type="object" string="Approve" class="oe_highlight"
attrs="{'invisible':['|','|',('is_approval_required','=',True),('am_i_owner','=',False),('state','not in',['draft', 'to approve'])]}"/>
<!-- cancel if i am owner or approver -->
<button name="page_approval_cancelled" type="object" string="Cancel"
attrs="{'invisible':['|','&amp;',('am_i_owner','=',False),('am_i_approver','=',False),('state','not in',['draft','to approve'])]}"/>
<!-- reopen if i am owner or approver -->
<button name="page_approval_draft" type="object" string="Back to draft" state="cancelled"
attrs="{'invisible':['|','&amp;',('am_i_owner','=',False),('am_i_approver','=',False),('state','not in',['cancelled'])]}"/>
<field name="am_i_owner" invisible="1"/>
<field name="am_i_approver" invisible="1"/>
<field name="is_approval_required" invisible="1"/>
<field name="state" widget="statusbar" statusbar_visible="draft,approved" />
</header>
</sheet>
<xpath expr="//field[@name='create_uid']/parent::group" position="after">
<group>
<field name="approved_uid" readonly="1" attrs="{'invisible':[('state','not in',['approved'])]}"/>
<field name="approved_date" readonly="1" attrs="{'invisible':[('state','not in',['approved'])]}"/>
</group>
</xpath>
<field name="content" position="attributes">
<attribute name="attrs">{'readonly': [('state', 'not in', ['draft'])]}</attribute>
</field>
<sheet position="after">
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</sheet>
</field>
</record>
<!-- Page Form View -->
<record id="wiki_form_inherit" model="ir.ui.view">
<field name="name">document.page.form</field>
<field name="model">document.page</field>
<field name="inherit_id" ref="document_page.view_wiki_form" />
<field name="arch" type="xml">
<sheet position="before">
<div class="alert alert-info" role="alert" style="margin-bottom:0px;"
attrs="{'invisible': [('has_changes_pending_approval','=',False)]}">
This document has <b>Changes Pending Approval</b>. You are viewing the last approved content.
</div>
<div class="alert alert-warning oe_edit_only" role="alert" style="margin-bottom:0px;"
attrs="{'invisible': [('is_approval_required','=',False)]}">
This document requires approval. If edited, you will create a new <b>Change Request</b>.
</div>
<field name="is_approval_required" invisible="1"/>
<field name="has_changes_pending_approval" invisible="1"/>
</sheet>
<field name="type" position="before">
<div class="oe_button_box" name="button_box">
<button class="oe_stat_button" name="action_changes_pending_approval"
string="Change Requests" type="object"
attrs="{'invisible':[('has_changes_pending_approval','=',False)]}" icon="fa-edit"/>
</div>
</field>
<field name="content_uid" position="after">
<field name="approved_uid"/>
</field>
<field name="content_date" position="replace">
<field name="approved_date"/>
</field>
<field name="history_ids" position="inside">
<tree>
<field name="id"/>
<field name="approved_date"/>
<field name="summary"/>
<field name="create_uid"/>
<field name="approved_uid"/>
</tree>
</field>
</field>
</record>
<!-- Page Menu Form View -->
<record id="view_wiki_menu_form_inherit" model="ir.ui.view">
<field name="name">document.page.form</field>
<field name="model">document.page</field>
<field name="inherit_id" ref="document_page.view_wiki_menu_form" />
<field name="arch" type="xml">
<field name="content" position="before">
<group class="oe_read_only" attrs="{'invisible':[('type','!=','content')]}">
<field name="approved_date" />
<field name="approved_uid" />
</group>
</field>
</field>
</record>
<!-- Catgory Form View -->
<record id="view_category_form_inherit" model="ir.ui.view">
<field name="name">document.page.category.form</field>
<field name="model">document.page</field>
<field name="inherit_id" ref="document_page.view_category_form" />
<field name="arch" type="xml">
<field name="parent_id" position="after">
<field name="approval_required"/>
<field name="approver_gid"
attrs="{'invisible':[('approval_required','!=', True)], 'required':[('approval_required','=', True)]}"/>
</field>
</field>
</record>
<!-- History Tree view -->
<record id="view_wiki_history_tree_inherit" model="ir.ui.view">
<field name="name">document.page.history.tree</field>
<field name="model">document.page.history</field>
<field name="inherit_id" ref="document_page.view_wiki_history_tree"/>
<field name="arch" type="xml">
<tree position="attributes">
<attribute name="decoration-info">state=='draft'</attribute>
<attribute name="decoration-primary">state=='to approve'</attribute>
<attribute name="decoration-muted">state=='cancelled'</attribute>
</tree>
<tree position="inside">
<field name="state"/>
<field name="approved_uid"/>
<field name="approved_date"/>
</tree>
</field>
</record>
<!-- History Search view -->
<record id="view_wiki_history_filter" model="ir.ui.view">
<field name="name">document.page.history.search</field>
<field name="model">document.page.history</field>
<field name="inherit_id" ref="document_page.view_wiki_history_filter"/>
<field name="arch" type="xml">
<field name="page_id" position="before">
<field name="state"/>
</field>
<field name="create_uid" position="after">
<filter name="draft" string="Draft" domain="[('state','=','draft')]"/>
<filter name="pending" string="Pending Approval" domain="[('state','=','to approve')]"/>
<filter name="approved" string="Approved" domain="[('state','=','approved')]"/>
<filter name="cancelled" string="Cancelled" domain="[('state','=','cancelled')]"/>
</field>
<filter name="group_author" position="before">
<filter name="group_state" string="State" context="{'group_by':'state'}" />
</filter>
<filter name="group_author" position="after">
<filter name="group_approver" string="Approver" context="{'group_by':'approved_uid'}" />
</filter>
</field>
</record>
<!-- Change Requests Action -->
<record model="ir.actions.act_window" id="action_change_requests">
<field name="name">Change Requests</field>
<field name="res_model">document.page.history</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="context">{'search_default_state':'to approve'}</field>
</record>
<menuitem id="menu_page_change_requests"
name="Change Requests"
parent="document_page.menu_wiki"
action="action_change_requests"
sequence="25"
groups="document_page.group_document_editor" />
</odoo>