[IMP][10.0][document_page_approval] Change Requests and workflow improvements on documents (#155)

This commit is contained in:
Iván Todorovich 2018-04-13 11:38:18 -03:00 committed by Bhavesh Heliconia
parent 463bb6c611
commit afc1bf0423
85 changed files with 17123 additions and 693 deletions

View File

@ -58,6 +58,7 @@ Contributors
* Savoir-faire Linux <support@savoirfairelinux.com> * Savoir-faire Linux <support@savoirfairelinux.com>
* Gervais Naoussi <gervaisnaoussi@gmail.com> * Gervais Naoussi <gervaisnaoussi@gmail.com>
* Maxime Chambreuil <mchambreuil@opensourceintegrators.com> * Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
* Iván Todorovich <ivan.todorovich@gmail.com>
Maintainer Maintainer
---------- ----------

View File

@ -3,3 +3,4 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models from . import models
from .hooks import post_init_hook, uninstall_hook

View File

@ -4,7 +4,7 @@
{ {
'name': 'Document Page Approval', 'name': 'Document Page Approval',
'version': '10.0.1.1.0', 'version': '10.0.2.0.0',
"author": "Savoir-faire Linux, Odoo Community Association (OCA)", "author": "Savoir-faire Linux, Odoo Community Association (OCA)",
"website": "http://www.savoirfairelinux.com", "website": "http://www.savoirfairelinux.com",
"license": "AGPL-3", "license": "AGPL-3",
@ -25,4 +25,6 @@
'images/page_history_list.png', 'images/page_history_list.png',
'images/page_history.png', 'images/page_history.png',
], ],
'post_init_hook': 'post_init_hook',
'uninstall_hook': 'uninstall_hook',
} }

View File

@ -1,12 +1,11 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<odoo noupdate="1"> <odoo>
<!-- Allow user to make upgrade-proof customizations to email template --> <!-- 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"> <record id="email_template_new_draft_need_approval" model="mail.template">
<field name="name">Automated new draft need approval Notification Mail</field> <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="email_from">${object.create_uid.company_id.email or 'noreply@localhost.com'}</field>
<field name="subject">New version of "${object.page_id.name}" to approve</field> <field name="subject">New version of ${object.display_name} needs your approval</field>
<field name="email_to">${object.get_approvers_email}</field>
<field name="model_id" ref="model_document_page_history"/> <field name="model_id" ref="model_document_page_history"/>
<field name="auto_delete" eval="True"/> <field name="auto_delete" eval="True"/>
<field name="lang">${object.create_uid.partner_id.lang}</field> <field name="lang">${object.create_uid.partner_id.lang}</field>
@ -14,13 +13,30 @@
<![CDATA[ <![CDATA[
<p>Hello,</p> <p>Hello,</p>
<p>The page "${object.page_id.name}" has been modified and need your approval.</p> <p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>
<p>You can review the new version here : <a href="${object.get_page_url}">${object.get_page_url}</a></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>
<p>Have a great day.<br/>
--<br/> --<br/>
Odoo</p>]]>
<p>Odoo</p>
]]>
</field> </field>
</record> </record>

View File

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# 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

@ -1,92 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_approval
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-07-27 20:53+0000\n"
"PO-Revision-Date: 2015-07-27 20:53+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: document_page_approval
#: model:email.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid "\n"
"<p>Hello,</p>\n"
"\n"
"<p>The page \"${object.page_id.name}\" has been modified and need your approval.</p>\n"
"\n"
"<p>You can review the new version here : <a href=\"${object.get_page_url}\">${object.get_page_url}</a></p>\n"
"\n"
"<p>Have a great day.<br/>\n"
"--<br/>\n"
"Odoo</p>\n"
" "
msgstr ""
#. module: document_page_approval
#: view:document.page.history:document_page_approval.wiki_history_form_inherit
msgid "Approve"
msgstr ""
#. module: document_page_approval
#: selection:document.page.history,state:0
msgid "Approved"
msgstr ""
#. module: document_page_approval
#: field:document.page.history,approved_uid:0
msgid "Approved By"
msgstr ""
#. module: document_page_approval
#: field:document.page.history,approved_date:0
msgid "Approved Date"
msgstr ""
#. module: document_page_approval
#: field:document.page,approver_gid:0
msgid "Approver group"
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
msgid "Draft"
msgstr ""
#. module: document_page_approval
#: model:email.template,subject:document_page_approval.email_template_new_draft_need_approval
msgid "New version of \"${object.page_id.name}\" to approve"
msgstr ""
#. module: document_page_approval
#: code:addons/document_page_approval/document_page_approval.py:66
#, python-format
msgid "New version of the document %s approved."
msgstr ""
#. module: document_page_approval
#: field:document.page,approval_required:0
msgid "Require approval"
msgstr ""
#. module: document_page_approval
#: field:document.page.history,state:0
msgid "Status"
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

@ -1,78 +1,148 @@
# Translation of Odoo Server. # Translation of Odoo Server.
# This file contains the translation of the following modules: # This file contains the translation of the following modules:
# * document_page_approval # * document_page_approval
# #
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 8.0\n" "Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-03 14:38+0200\n" "POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2015-08-03 14:38+0200\n" "PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: \n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \n" "Language: es\n"
"X-Generator: Poedit 1.8.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval #. module: document_page_approval
#: model:email.template,body_html:document_page_approval.email_template_new_draft_need_approval #: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid "" msgid ""
"\n" "\n"
" \n"
"<p>Hello,</p>\n" "<p>Hello,</p>\n"
"\n" "\n"
"<p>The page \"${object.page_id.name}\" has been modified and need your " "<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"approval.</p>\n"
"\n" "\n"
"<p>You can review the new version here : <a href=\"${object.get_page_url}\">" "<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"${object.get_page_url}</a></p>\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" "\n"
"<p>Have a great day.<br/>\n"
"--<br/>\n" "--<br/>\n"
"Odoo</p>\n" "\n"
" " "<p>Odoo</p>\n"
" \n"
" "
msgstr "" msgstr ""
"\n"
"<p>Hola,</p>\n"
"\n"
"<p>La página \"${object.page_id.name}\" ha sido modificada y necesita tu "
"aprobación.</p>\n"
"\n"
"<p>Puedes revisar la nueva versión aquí: <a href=\"${object.get_page_url}\">"
"${object.get_page_url}</a></p>\n"
"\n"
"<p>Que tenga un buen día.<br/>\n"
"--<br/>\n"
"Odoo</p>\n"
" "
#. module: document_page_approval #. module: document_page_approval
#: view:document.page.history:document_page_approval.wiki_history_form_inherit #: 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" msgid "Approve"
msgstr "Aprobar" msgstr "Aprobar"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved" msgid "Approved"
msgstr "Aprobado" msgstr "Aprobado"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,approved_uid:0 #: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
msgid "Approved By" #: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgstr "Aprobado por"
#. module: document_page_approval
#: field:document.page.history,approved_date:0
msgid "Approved Date" msgid "Approved Date"
msgstr "Fecha de aprobación" msgstr "Fecha de aprobación"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approver_gid:0 #: 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" msgid "Approver group"
msgstr "Grupo aprobador" 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 #. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page #: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page" msgid "Document Page"
@ -85,26 +155,88 @@ msgstr "Historia de página de documento"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft" msgid "Draft"
msgstr "Borrador" msgstr "Borrador"
#. module: document_page_approval #. module: document_page_approval
#: model:email.template,subject:document_page_approval.email_template_new_draft_need_approval #: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "New version of \"${object.page_id.name}\" to approve" msgid "Groups that can approve changes to this document"
msgstr "Nueva versión de \"${object.page_id.name}\" para aprobar" msgstr ""
#. module: document_page_approval #. module: document_page_approval
#: code:addons/document_page_approval/document_page_approval.py:66 #: 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 #, python-format
msgid "New version of the document %s approved." msgid "New version of the document %s approved."
msgstr "Nueva versión del documento %s aprobada." msgstr "Nueva versión del documento %s aprobada."
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approval_required:0 #: 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" msgid "Require approval"
msgstr "Requiere aprobación" msgstr "Requiere aprobación"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,state:0 #: 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" msgid "Status"
msgstr "Estado" 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

@ -1,78 +1,148 @@
# Translation of Odoo Server. # Translation of Odoo Server.
# This file contains the translation of the following modules: # This file contains the translation of the following modules:
# * document_page_approval # * document_page_approval
# #
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 8.0\n" "Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-03 14:38+0200\n" "POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2015-08-03 14:38+0200\n" "PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: \n" "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
"Language: es_CR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \n" "Language: es_CR\n"
"X-Generator: Poedit 1.8.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: document_page_approval #. module: document_page_approval
#: model:email.template,body_html:document_page_approval.email_template_new_draft_need_approval #: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid "" msgid ""
"\n" "\n"
" \n"
"<p>Hello,</p>\n" "<p>Hello,</p>\n"
"\n" "\n"
"<p>The page \"${object.page_id.name}\" has been modified and need your " "<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>\n"
"approval.</p>\n"
"\n" "\n"
"<p>You can review the new version here : <a href=\"${object.get_page_url}\">" "<h1><a href=\"${object.page_url}\">${object.display_name}</a></h1>\n"
"${object.get_page_url}</a></p>\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" "\n"
"<p>Have a great day.<br/>\n"
"--<br/>\n" "--<br/>\n"
"Odoo</p>\n" "\n"
" " "<p>Odoo</p>\n"
" \n"
" "
msgstr "" msgstr ""
"\n"
"<p>Hola,</p>\n"
"\n"
"<p>La página \"${object.page_id.name}\" ha sido modificada y necesita tu "
"aprobación.</p>\n"
"\n"
"<p>Puedes revisar la nueva versión aquí: <a href=\"${object.get_page_url}\">"
"${object.get_page_url}</a></p>\n"
"\n"
"<p>Que tenga un buen día.<br/>\n"
"--<br/>\n"
"Odoo</p>\n"
" "
#. module: document_page_approval #. module: document_page_approval
#: view:document.page.history:document_page_approval.wiki_history_form_inherit #: 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" msgid "Approve"
msgstr "Aprobar" msgstr "Aprobar"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved" msgid "Approved"
msgstr "Aprobado" msgstr "Aprobado"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,approved_uid:0 #: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
msgid "Approved By" #: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgstr "Aprobado por"
#. module: document_page_approval
#: field:document.page.history,approved_date:0
msgid "Approved Date" msgid "Approved Date"
msgstr "Fecha de aprobación" msgstr "Fecha de aprobación"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approver_gid:0 #: 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" msgid "Approver group"
msgstr "Grupo aprobador" 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 #. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page #: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page" msgid "Document Page"
@ -85,26 +155,88 @@ msgstr "Historia de página de documento"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft" msgid "Draft"
msgstr "Borrador" msgstr "Borrador"
#. module: document_page_approval #. module: document_page_approval
#: model:email.template,subject:document_page_approval.email_template_new_draft_need_approval #: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "New version of \"${object.page_id.name}\" to approve" msgid "Groups that can approve changes to this document"
msgstr "Nueva versión de \"${object.page_id.name}\" para aprobar" msgstr ""
#. module: document_page_approval #. module: document_page_approval
#: code:addons/document_page_approval/document_page_approval.py:66 #: 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 #, python-format
msgid "New version of the document %s approved." msgid "New version of the document %s approved."
msgstr "Nueva versión del documento %s aprobada." msgstr "Nueva versión del documento %s aprobada."
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approval_required:0 #: 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" msgid "Require approval"
msgstr "Requiere aprobación" msgstr "Requiere aprobación"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,state:0 #: 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" msgid "Status"
msgstr "Estado" 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

@ -1,74 +1,148 @@
# Translation of Odoo Server. # Translation of Odoo Server.
# This file contains the translation of the following modules: # This file contains the translation of the following modules:
# * document_page_approval # * document_page_approval
# #
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 8.0\n" "Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-07-30 14:19-0600\n" "POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2015-08-03 13:36+0200\n" "PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: <>\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: \n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \n" "Language: fr\n"
"X-Generator: Poedit 1.8.2\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: document_page_approval #. module: document_page_approval
#: model:email.template,body_html:document_page_approval.email_template_new_draft_need_approval #: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid "" msgid ""
"\n" "\n"
" \n"
"<p>Hello,</p>\n" "<p>Hello,</p>\n"
"\n" "\n"
"<p>The page \"${object.page_id.name}\" has been modified and need your approval.</p>\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" "\n"
"<p>You can review the new version here : <a href=\"${object.get_page_url}\">${object.get_page_url}</a></p>\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" "\n"
"<p>Have a great day.<br/>\n"
"--<br/>\n" "--<br/>\n"
"Odoo</p>\n" "\n"
" " "<p>Odoo</p>\n"
" \n"
" "
msgstr "" msgstr ""
"\n"
"<p>Bonjour,</p>\n"
"\n"
"<p>La page \"${object.page_id.name}\" a été modifié et demande votre approbation.</p>\n"
"\n"
"<p>Vous pouvez réviser la nouvelle version ici : <a href=\"${object.get_page_url}\">${object.get_page_url}</a></p>\n"
"\n"
"<p>Bonne journée.<br/>\n"
"--<br/>\n"
"Odoo</p>\n"
" "
#. module: document_page_approval #. module: document_page_approval
#: view:document.page.history:document_page_approval.wiki_history_form_inherit #: 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" msgid "Approve"
msgstr "Approuver" msgstr "Approuver"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved" msgid "Approved"
msgstr "Approuvée" msgstr "Approuvée"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,approved_uid:0 #: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
msgid "Approved By" #: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgstr "Approuvée par"
#. module: document_page_approval
#: field:document.page.history,approved_date:0
msgid "Approved Date" msgid "Approved Date"
msgstr "Date d'approbation" msgstr "Date d'approbation"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approver_gid:0 #: 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" msgid "Approver group"
msgstr "Groupe approbateur" 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 #. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page #: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page" msgid "Document Page"
@ -81,26 +155,88 @@ msgstr "Historique de la page"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft" msgid "Draft"
msgstr "Brouillon" msgstr "Brouillon"
#. module: document_page_approval #. module: document_page_approval
#: model:email.template,subject:document_page_approval.email_template_new_draft_need_approval #: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "New version of \"${object.page_id.name}\" to approve" msgid "Groups that can approve changes to this document"
msgstr "Nouvelle version de \"${object.page_id.name}\" à approuver" msgstr ""
#. module: document_page_approval #. module: document_page_approval
#: code:addons/document_page_approval/document_page_approval.py:66 #: 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 #, python-format
msgid "New version of the document %s approved." msgid "New version of the document %s approved."
msgstr "" msgstr ""
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approval_required:0 #: 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" msgid "Require approval"
msgstr "Nécessite une approbation" msgstr "Nécessite une approbation"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,state:0 #: 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" msgid "Status"
msgstr "Statut" 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

@ -1,74 +1,148 @@
# Translation of Odoo Server. # Translation of Odoo Server.
# This file contains the translation of the following modules: # This file contains the translation of the following modules:
# * document_page_approval # * document_page_approval
# #
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 8.0\n" "Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-07-30 14:20-0600\n" "POT-Creation-Date: 2018-04-24 22:33+0000\n"
"PO-Revision-Date: 2015-08-03 13:36+0200\n" "PO-Revision-Date: 2018-04-24 22:33+0000\n"
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>\n" "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Slovenian <translate@matmoz.si>\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \n" "Language: sl\n"
"X-Generator: Poedit 1.8.2\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 #. module: document_page_approval
#: model:email.template,body_html:document_page_approval.email_template_new_draft_need_approval #: model:mail.template,body_html:document_page_approval.email_template_new_draft_need_approval
msgid "" msgid ""
"\n" "\n"
" \n"
"<p>Hello,</p>\n" "<p>Hello,</p>\n"
"\n" "\n"
"<p>The page \"${object.page_id.name}\" has been modified and need your approval.</p>\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" "\n"
"<p>You can review the new version here : <a href=\"${object.get_page_url}\">${object.get_page_url}</a></p>\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" "\n"
"<p>Have a great day.<br/>\n"
"--<br/>\n" "--<br/>\n"
"Odoo</p>\n" "\n"
" " "<p>Odoo</p>\n"
" \n"
" "
msgstr "" msgstr ""
"\n"
"<p>Pozdravljeni,</p>\n"
"\n"
"<p>Stran \"${object.page_id.name}\" vsebuje spremembe, ki potrebujejo vašo odobritev.</p>\n"
"\n"
"<p>Novo različico lahko pregledate tukaj: <a href=\"${object.get_page_url}\">${object.get_page_url}</a></p>\n"
"\n"
"<p>Lep dan.<br/>\n"
"--<br/>\n"
"Odoo</p>\n"
" "
#. module: document_page_approval #. module: document_page_approval
#: view:document.page.history:document_page_approval.wiki_history_form_inherit #: 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" msgid "Approve"
msgstr "Odobri" msgstr "Odobri"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Approved" msgid "Approved"
msgstr "Odobreno" msgstr "Odobreno"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,approved_uid:0 #: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
msgid "Approved By" #: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
msgstr "Odobril"
#. module: document_page_approval
#: field:document.page.history,approved_date:0
msgid "Approved Date" msgid "Approved Date"
msgstr "Datum odobritve" msgstr "Datum odobritve"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approver_gid:0 #: 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" msgid "Approver group"
msgstr "Skupina pooblaščenih za odobritev" 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 #. module: document_page_approval
#: model:ir.model,name:document_page_approval.model_document_page #: model:ir.model,name:document_page_approval.model_document_page
msgid "Document Page" msgid "Document Page"
@ -81,26 +155,88 @@ msgstr "Zgodovina strani dokumentov"
#. module: document_page_approval #. module: document_page_approval
#: selection:document.page.history,state:0 #: selection:document.page.history,state:0
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
msgid "Draft" msgid "Draft"
msgstr "Osnutek" msgstr "Osnutek"
#. module: document_page_approval #. module: document_page_approval
#: model:email.template,subject:document_page_approval.email_template_new_draft_need_approval #: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
msgid "New version of \"${object.page_id.name}\" to approve" msgid "Groups that can approve changes to this document"
msgstr "Nova različica \"${object.page_id.name}\" za odobritev" msgstr ""
#. module: document_page_approval #. module: document_page_approval
#: code:addons/document_page_approval/document_page_approval.py:66 #: 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 #, python-format
msgid "New version of the document %s approved." msgid "New version of the document %s approved."
msgstr "Nova verzija dokumenta %s odobrena." msgstr "Nova verzija dokumenta %s odobrena."
#. module: document_page_approval #. module: document_page_approval
#: field:document.page,approval_required:0 #: 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" msgid "Require approval"
msgstr "Zahtevana odobritev" msgstr "Zahtevana odobritev"
#. module: document_page_approval #. module: document_page_approval
#: field:document.page.history,state:0 #: 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" msgid "Status"
msgstr "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 ""

View File

@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
# Copyright 2018 Ivan Todorovich <ivan.todorovich@gmail.com>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
def migrate(cr, version): # 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
""")

View File

@ -2,7 +2,9 @@
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>). # Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import api, fields, models
from odoo import api, fields, models
from ast import literal_eval
class DocumentPageApproval(models.Model): class DocumentPageApproval(models.Model):
@ -10,104 +12,126 @@ class DocumentPageApproval(models.Model):
_inherit = 'document.page' _inherit = 'document.page'
@api.multi history_ids = fields.One2many(
def _get_display_content(self): order='approved_date DESC',
"""Display the content of document.""" domain=[('state', '=', 'approved')],
for page in self:
content = ""
if page.type == "category":
content = self._get_page_index(page, link=False)
else:
history = self.env['document.page.history']
if self.is_approval_required(page):
history_ids = history.search(
[
('page_id', '=', page.id),
('state', '=', 'approved')
],
limit=1,
order='create_date DESC'
)
content = history_ids.content
else:
content = page.content
page.display_content = content
@api.multi
def _get_approved_date(self):
"""Return the approved date of a document."""
for page in self:
approved_date = False
if self.is_approval_required(page):
history = self.env['document.page.history']
history_ids = history.search(
[
('page_id', '=', page.id),
('state', '=', 'approved')
],
limit=1,
order='create_date DESC'
)
approved_date = history_ids.approved_date
page.approved_date = approved_date
@api.multi
def _get_approved_uid(self):
"""Return the user's id of the approved user."""
for page in self:
approved_uid = False
if self.is_approval_required(page):
history = self.env['document.page.history']
history_ids = history.search(
[
('page_id', '=', page.id),
('state', '=', 'approved')
],
limit=1,
order='create_date DESC'
)
approved_uid = history_ids.approved_uid.id
page.approved_uid = approved_uid
@api.multi
def _is_parent_approval_required(self):
"""Check if the document requires approval base on his parent."""
for page in self:
page.is_parent_approval_required = self.is_approval_required(page)
def is_approval_required(self, page):
"""Check if a document requires approval."""
if page:
res = page.approval_required
res = res or self.is_approval_required(page.parent_id)
else:
res = False
return res
display_content = fields.Text(
compute=_get_display_content,
string='Displayed Content'
) )
approved_date = fields.Datetime( approved_date = fields.Datetime(
compute=_get_approved_date, 'Approved Date',
string="Approved Date" related='history_head.approved_date',
store=True,
index=True,
readonly=True,
) )
approved_uid = fields.Many2one( approved_uid = fields.Many2one(
'res.users', 'res.users',
compute=_get_approved_uid, 'Approved by',
string="Approved By", related='history_head.approved_uid',
store=True,
index=True,
readonly=True,
) )
approval_required = fields.Boolean("Require approval") approval_required = fields.Boolean(
'Require approval',
is_parent_approval_required = fields.Boolean( help='Require approval for changes on this page or its child pages.',
compute=_is_parent_approval_required,
string="parent approval"
) )
approver_gid = fields.Many2one( approver_gid = fields.Many2one(
"res.groups", "res.groups",
"Approver group" "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.signal_workflow('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

@ -11,117 +11,122 @@ from odoo import api, fields, models
class DocumentPageHistoryWorkflow(models.Model): class DocumentPageHistoryWorkflow(models.Model):
"""Useful to manage edition's workflow on a document.""" """Useful to manage edition's workflow on a document."""
_inherit = 'document.page.history' _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,
)
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(
related='page_id.am_i_approver'
)
page_url = fields.Text(
compute='_compute_page_url',
string="URL",
)
@api.multi @api.multi
def page_approval_draft(self): def page_approval_draft(self):
"""Set a document state as draft and notified the reviewers.""" """Set a change request as draft"""
self.write({'state': 'draft'}) self.write({'state': 'draft'})
@api.multi
def page_approval_to_approve(self):
"""Set a change request as to approve"""
self.write({'state': 'to approve'})
template = self.env.ref( template = self.env.ref(
'document_page_approval.email_template_new_draft_need_approval') 'document_page_approval.email_template_new_draft_need_approval')
for page in self: approver_gid = self.env.ref(
if page.is_parent_approval_required: 'document_page_approval.group_document_approver_user')
template.send_mail(page.id, force_send=True) for rec in self:
return True 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 @api.multi
def page_approval_approved(self): def page_approval_approved(self):
"""Set a document state as approve.""" """Set a change request as approved."""
message_obj = self.env['mail.message']
self.write({ self.write({
'state': 'approved', 'state': 'approved',
'approved_date': datetime.now().strftime( 'approved_date': datetime.now().strftime(
DEFAULT_SERVER_DATETIME_FORMAT), DEFAULT_SERVER_DATETIME_FORMAT),
'approved_uid': self.env.uid 'approved_uid': self.env.uid
}) })
# Notify followers a new version is available for rec in self:
for page_history in self: # Trigger computed field update
subtype = self.env.ref('mail.mt_comment') rec.page_id._compute_history_head()
message_obj.create( # Notify state change
{'res_id': page_history.page_id.id, rec.message_post(
'model': 'document.page', subtype='mt_comment',
'subtype_id': subtype.id, body=_(
'body': _('New version of the document %s' 'Change request has been approved by %s.'
' approved.') % page_history.page_id.name ) % (self.env.user.name)
}
) )
return True # Notify followers a new version is available
rec.page_id.message_post(
@api.multi subtype='mt_comment',
def _can_user_approve_page(self): body=_(
"""Check if a user cas approve the page.""" 'New version of the document %s approved.'
user = self.env.user ) % (rec.page_id.name)
for page in self:
page.can_user_approve_page = page.can_user_approve_this_page(
page.page_id,
user
) )
def can_user_approve_this_page(self, page, user): @api.multi
"""Check if a user can approved the page.""" def page_approval_cancelled(self):
if page: """Set a change request as cancelled."""
res = page.approver_gid in user.groups_id self.write({'state': 'cancelled'})
res = res or self.can_user_approve_this_page(page.parent_id, user) for rec in self:
else: rec.message_post(
res = False subtype='mt_comment',
return res body=_(
'Change request <b>%s</b> has been cancelled by %s.'
) % (rec.display_name, self.env.user.name)
)
@api.multi @api.multi
def get_approvers_guids(self): def _compute_am_i_owner(self):
"""Return the approvers group.""" """Check if current user is the owner"""
res = {} for rec in self:
for page in self: rec.am_i_owner = (rec.create_uid == self.env.user)
res[page.id] = self.get_approvers_guids_for_page(page.page_id)
return res
def get_approvers_guids_for_page(self, page):
"""Return the approvers group for a page."""
if page:
if page.approver_gid:
res = [page.approver_gid.id]
else:
res = []
res.extend(self.get_approvers_guids_for_page(page.parent_id))
else:
res = []
return res
@api.multi @api.multi
def _get_approvers_email(self): def _compute_page_url(self):
"""Get the approvers email.""" """Compute the page url."""
for page in self:
emails = ''
guids = self.get_approvers_guids()
uids = [i.id for i in self.env['res.users'].search([
('groups_id', 'in', guids[page.id])
])]
users = self.env['res.users'].browse(uids)
for user in users:
if user.email:
emails += user.email
emails += ','
else:
empl = self.env['hr.employee'].search([
('login', '=', user.login)
])
if empl.work_email:
emails += empl.work_email
emails += ','
page.get_approvers_email = emails[:-1]
@api.multi
def _get_page_url(self):
"""Get the page url."""
for page in self: for page in self:
base_url = self.env['ir.config_parameter'].get_param( base_url = self.env['ir.config_parameter'].get_param(
'web.base.url', 'web.base.url',
default='http://localhost:8069' default='http://localhost:8069'
) )
page.get_page_url = ( page.page_url = (
'{}/web#db={}&id={}&view_type=form&' '{}/web#db={}&id={}&view_type=form&'
'model=document.page.history').format( 'model=document.page.history').format(
base_url, base_url,
@ -129,37 +134,18 @@ class DocumentPageHistoryWorkflow(models.Model):
page.id page.id
) )
state = fields.Selection( @api.multi
[('draft', 'Draft'), ('approved', 'Approved')], def _compute_diff(self):
'Status', """Shows a diff between this version and the previous version"""
readonly=True history = self.env['document.page.history']
) for rec in self:
domain = [
approved_date = fields.Datetime("Approved Date") ('page_id', '=', rec.page_id.id),
('state', '=', 'approved')]
approved_uid = fields.Many2one( if rec.approved_date:
'res.users', domain.append(('approved_date', '<', rec.approved_date))
"Approved By" prev = history.search(domain, limit=1, order='approved_date DESC')
) if prev:
rec.diff = self.getDiff(prev.id, rec.id)
is_parent_approval_required = fields.Boolean( else:
related='page_id.is_parent_approval_required', rec.diff = self.getDiff(False, rec.id)
string="parent approval",
store=False
)
can_user_approve_page = fields.Boolean(
compute=_can_user_approve_page,
string="can user approve this page",
store=False
)
get_approvers_email = fields.Text(
compute=_get_approvers_email,
string="get all approvers email",
store=False
)
get_page_url = fields.Text(
compute=_get_page_url,
string="URL",
store=False
)

View File

@ -2,8 +2,13 @@
<odoo> <odoo>
<record id="group_document_approver_user" model="res.groups"> <record id="group_document_approver_user" model="res.groups">
<field name="name">Document approver</field> <field name="name">Approver</field>
<field name="users" eval="[(4, ref('base.user_root'))]"/> <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> </record>
</odoo> </odoo>

View File

@ -1,2 +1 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
document_page_history,document.page.history,model_document_page_history,group_document_approver_user,1,1,1,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
document_page_history document.page.history model_document_page_history group_document_approver_user 1 1 1 0

View File

@ -1,2 +1,2 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from . import test_document_page_approval, test_document_page_history_workflow from . import test_document_page_approval

View File

@ -1,37 +1,125 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from openerp.tests import common from odoo.tests import common
class TestDocumentPageApproval(common.TransactionCase): class TestDocumentPageApproval(common.TransactionCase):
"""Test document page approval model."""
def test_get_display_content(self): def setUp(self):
"""Test page display content.""" super(TestDocumentPageApproval, self).setUp()
# Check content of a category self.page_obj = self.env['document.page']
category = self.env['document.page'].search([ self.history_obj = self.env['document.page.history']
('name', '=', 'OpenERP Features') # 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'
})
self.assertIsNotNone(category.display_content, 'a category') 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)
# Check content of a page def test_change_request_approve(self):
pages = self.env['document.page'].search([ page = self.page2
('parent_id', '=', category.id) 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.signal_workflow('page_approval_approve')
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.signal_workflow('page_approval_approve')
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')
]).signal_workflow('page_approval_approve')
# 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.signal_workflow('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.signal_workflow('page_approval_cancel')
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.signal_workflow('page_approval_reopen')
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.signal_workflow('page_approval_approve')
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] page = pages[0]
self.assertIsNotNone(page.display_content, 'Page content') self.assertIsNotNone(page.page_url)
# Check if approval is required
self.assertTrue(page.is_approval_required(page) ==
category.approval_required)
# Check content of an approval page
page.approval_required = True
self.assertIsNotNone(page.display_content, 'Page content')
# Check if approval is required
self.assertTrue(page.is_approval_required(page))
# Check if parent approval is required
self.assertTrue(page.is_parent_approval_required)

View File

@ -1,67 +0,0 @@
# -*- coding: utf-8 -*-
from openerp.tests import common
# Import logger
import logging
# Get the logger
_logger = logging.getLogger(__name__)
class TestDocumentPageHistoryWorkflow(common.TransactionCase):
"""Test document page history workflow."""
def test_can_user_approve_this_page(self):
"""Test if a user can approve this page."""
category = self.env.ref('document_page.demo_category1')
category.approval_required = True
category.approver_gid = self.env.ref(
'document_page_approval.group_document_approver_user')
page = self.env['document.page'].create({
'name': 'Test Page10',
'content': 'A difficult test',
'parent_id': category.id
})
history = self.env['document.page.history'].search(
[
('page_id', '=', page.id)
],
limit=1,
order='create_date DESC'
)
self.assertTrue(history.can_user_approve_page)
def test_get_approvers_guids(self):
"""Get approver guids."""
category = self.env.ref('document_page.demo_category1')
category.approval_required = True
pages = self.env['document.page.history'].search([
('page_id', '=', category.id)
])
page = pages[0]
approvers_guid = page.get_approvers_guids()
self.assertTrue(len(approvers_guid) > 0)
def test_get_approvers_email(self):
"""Get approver email."""
category = self.env.ref('document_page.demo_category1')
category.approval_required = True
pages = self.env['document.page.history'].search([
('page_id', '=', category.id)
])
page = pages[0]
_logger.info("Email: " + str(page.get_approvers_email))
self.assertIsNotNone(page.get_approvers_email)
def test_get_page_url(self):
"""Test if page url exist."""
category = self.env.ref('document_page.demo_category1')
category.approval_required = True
pages = self.env['document.page.history'].search([
('page_id', '=', category.id)
])
page = pages[0]
_logger.info("Page: " + str(page.get_page_url))
self.assertIsNotNone(page.get_page_url)

View File

@ -1,92 +1,189 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<odoo> <odoo>
<record id="wiki_history_form_inherit" model="ir.ui.view"> <!-- History Form View -->
<field name="name">document.page.history.form</field> <record id="wiki_history_form_inherit" model="ir.ui.view">
<field name="model">document.page.history</field> <field name="name">document.page.history.form</field>
<field name="inherit_id" <field name="model">document.page.history</field>
ref="document_page.wiki_history_form"/> <field name="inherit_id" ref="document_page.wiki_history_form"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<xpath expr="//form/label[@for='page_id']" <sheet position="before">
position="before"> <header>
<header attrs="{'invisible':[('is_parent_approval_required','=',False)]}"> <!-- draft -> to approve -->
<button name="page_approval_approve" <button name="page_approval_to_approve" string="Send to Review" class="oe_highlight"
string="Approve" attrs="{'invisible':['|','|',('is_approval_required','=',False),('am_i_owner','=',False),('state', 'not in', ['draft'])]}"/>
states="draft" <!-- approve if i am approver -->
class="btn-primary" <button name="page_approval_approve" string="Approve" class="oe_highlight"
attrs="{'invisible':[('can_user_approve_page','=',False)]}"/> attrs="{'invisible':['|','|',('is_approval_required','=',False),('am_i_approver','=',False),('state','not in',['draft','to approve'])]}"/>
<field name="state" <!-- approve if it's not required and i am owner -->
widget="statusbar" <button name="page_approval_approve" string="Approve" class="oe_highlight"
statusbar_visible="draft,approved"/> attrs="{'invisible':['|','|',('is_approval_required','=',True),('am_i_owner','=',False),('state','not in',['draft', 'to approve'])]}"/>
<field name="is_parent_approval_required" <!-- cancel if i am owner or approver -->
invisible="1" /> <button name="page_approval_cancel" string="Cancel"
<field name="can_user_approve_page" attrs="{'invisible':['|','&amp;',('am_i_owner','=',False),('am_i_approver','=',False),('state','not in',['draft','to approve'])]}"/>
invisible="1" /> <!-- reopen if i am owner or approver -->
</header> <button name="page_approval_reopen" string="Back to draft"
</xpath> 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> </field>
</record> <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>
<record id="wiki_form_inherit" model="ir.ui.view"> <!-- Page Form View -->
<field name="name">document.page.form</field> <record id="wiki_form_inherit" model="ir.ui.view">
<field name="model">document.page</field> <field name="name">document.page.form</field>
<field name="inherit_id" <field name="model">document.page</field>
ref="document_page.view_wiki_form" /> <field name="inherit_id" ref="document_page.view_wiki_form" />
<field name="arch" type="xml"> <field name="arch" type="xml">
<field name="display_content"
position="before">
<group class="oe_read_only">
<field name="approved_date" />
<field name="approved_uid" />
</group>
</field>
</field>
</record>
<record id="view_wiki_menu_form_inherit" model="ir.ui.view"> <sheet position="before">
<field name="name">document.page.form</field> <div class="alert alert-info" role="alert" style="margin-bottom:0px;"
<field name="model">document.page</field> attrs="{'invisible': [('has_changes_pending_approval','=',False)]}">
<field name="inherit_id" This document has <b>Changes Pending Approval</b>. You are viewing the last approved content.
ref="document_page.view_wiki_menu_form" /> </div>
<field name="arch" type="xml"> <div class="alert alert-warning oe_edit_only" role="alert" style="margin-bottom:0px;"
<field name="display_content" attrs="{'invisible': [('is_approval_required','=',False)]}">
position="before"> This document requires approval. If edited, you will create a new <b>Change Request</b>.
<group class="oe_read_only" </div>
attrs="{'invisible':[('type','!=','content')]}"> <field name="is_approval_required" invisible="1"/>
<field name="approved_date" /> <field name="has_changes_pending_approval" invisible="1"/>
<field name="approved_uid" /> </sheet>
</group>
</field>
</field>
</record>
<record id="view_category_form_inherit" model="ir.ui.view"> <field name="type" position="before">
<field name="name">document.page.category.form</field> <div class="oe_button_box" name="button_box">
<field name="model">document.page</field> <button class="oe_stat_button" name="action_changes_pending_approval"
<field name="inherit_id" string="Change Requests" type="object"
ref="document_page.view_category_form" /> attrs="{'invisible':[('has_changes_pending_approval','=',False)]}" icon="fa-edit"/>
<field name="arch" type="xml"> </div>
<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> </field>
</record>
<record id="view_wiki_history_tree_inherit" model="ir.ui.view"> <field name="content_uid" position="after">
<field name="name">document.page.history.tree</field> <field name="approved_uid"/>
<field name="model">document.page.history</field>
<field name="inherit_id"
ref="document_page.view_wiki_history_tree" />
<field name="arch" type="xml">
<field name="page_id" position="after">
<field name="state"
attrs="{'invisible':[('is_parent_approval_required','=',False)]}"/>
<field name="is_parent_approval_required"
invisible="1" />
</field>
</field> </field>
</record>
<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> </odoo>

View File

@ -1,40 +1,104 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<odoo> <odoo>
<record model="workflow" id="wkf_document_page_history_aproval"> <record model="workflow" id="wkf_document_page_history_aproval">
<field name="name">document.page.history.aproval.wkf</field> <field name="name">document.page.history.aproval.wkf</field>
<field name="osv">document.page.history</field> <field name="osv">document.page.history</field>
<field name="on_create">True</field> <field name="on_create">True</field>
</record> </record>
<record model="workflow.activity" id="act_approved"> <record model="workflow.activity" id="act_draft">
<field name="wkf_id" <field name="wkf_id" ref="wkf_document_page_history_aproval" />
ref="wkf_document_page_history_aproval" /> <field name="flow_start">True</field>
<field name="name">approved</field> <field name="name">draft</field>
<field name="kind">function</field> <field name="kind">function</field>
<field name="action">page_approval_approved()</field> <field name="action">page_approval_draft()</field>
<field name="flow_stop">True</field> </record>
</record>
<record model="workflow.activity" id="act_draft"> <record model="workflow.activity" id="act_to_approve">
<field name="wkf_id" <field name="wkf_id" ref="wkf_document_page_history_aproval" />
ref="wkf_document_page_history_aproval" /> <field name="name">to approve</field>
<field name="flow_start">True</field> <field name="kind">function</field>
<field name="name">draft</field> <field name="action">page_approval_to_approve()</field>
<field name="kind">function</field> </record>
<field name="action">page_approval_draft()</field>
</record>
<record model="workflow.transition" id="tda"> <record model="workflow.activity" id="act_approved">
<field name="act_from" ref="act_draft" /> <field name="wkf_id" ref="wkf_document_page_history_aproval" />
<field name="act_to" ref="act_approved" /> <field name="name">approved</field>
<field name="signal">page_approval_approve</field> <field name="kind">function</field>
</record> <field name="action">page_approval_approved()</field>
<field name="flow_stop">True</field>
</record>
<record model="workflow.transition" id="tad"> <record model="workflow.activity" id="act_cancelled">
<field name="act_from" ref="act_approved" /> <field name="wkf_id" ref="wkf_document_page_history_aproval" />
<field name="act_to" ref="act_draft" /> <field name="name">cancelled</field>
<field name="signal">edit</field> <field name="kind">function</field>
</record> <field name="action">page_approval_cancelled()</field>
</record>
<!-- Transitions -->
<record model="workflow.transition" id="tdr">
<field name="act_from" ref="act_draft"/>
<field name="act_to" ref="act_to_approve"/>
<field name="condition">am_i_owner</field>
<field name="signal">page_approval_to_approve</field>
</record>
<record model="workflow.transition" id="tda">
<field name="act_from" ref="act_draft"/>
<field name="act_to" ref="act_approved"/>
<field name="condition">am_i_approver</field>
<field name="signal">page_approval_approve</field>
</record>
<record model="workflow.transition" id="tra">
<field name="act_from" ref="act_to_approve"/>
<field name="act_to" ref="act_approved"/>
<field name="condition">am_i_approver</field>
<field name="signal">page_approval_approve</field>
</record>
<record model="workflow.transition" id="tad">
<field name="act_from" ref="act_approved"/>
<field name="act_to" ref="act_draft"/>
<field name="condition">am_i_approver</field>
<field name="signal">edit</field>
</record>
<record model="workflow.transition" id="tdc">
<field name="act_from" ref="act_draft"/>
<field name="act_to" ref="act_cancelled"/>
<field name="condition">am_i_owner</field>
<field name="signal">page_approval_cancel</field>
</record>
<record model="workflow.transition" id="trc">
<field name="act_from" ref="act_to_approve"/>
<field name="act_to" ref="act_cancelled"/>
<field name="condition">am_i_owner or am_i_approver</field>
<field name="signal">page_approval_cancel</field>
</record>
<record model="workflow.transition" id="tcd">
<field name="act_from" ref="act_cancelled"/>
<field name="act_to" ref="act_draft"/>
<field name="condition">am_i_owner or am_i_approver</field>
<field name="signal">page_approval_reopen</field>
</record>
<!-- Automatic Transitions for change requests created directly from documents -->
<record model="workflow.transition" id="tda_auto">
<field name="act_from" ref="act_draft"/>
<field name="act_to" ref="act_approved"/>
<field name="condition">not is_approval_required</field>
<field name="signal">document_page_auto_confirm</field>
</record>
<record model="workflow.transition" id="tdr_auto">
<field name="act_from" ref="act_draft"/>
<field name="act_to" ref="act_to_approve"/>
<field name="condition">is_approval_required</field>
<field name="signal">document_page_auto_confirm</field>
</record>
</odoo> </odoo>