mirror of
https://github.com/OCA/knowledge.git
synced 2025-12-22 21:32:18 -06:00
101
document_page_approval/README.rst
Normal file
101
document_page_approval/README.rst
Normal file
@@ -0,0 +1,101 @@
|
||||
======================
|
||||
Document Page Approval
|
||||
======================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/knowledge/tree/12.0/document_page_approval
|
||||
:alt: OCA/knowledge
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/knowledge-12-0/knowledge-12-0-document_page_approval
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/118/12.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module adds a workflow to approve page modifications
|
||||
and show the approved version by default.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
To configure this module, you need to:
|
||||
|
||||
#. Set a valid email address on the company settings.
|
||||
#. Go to Knowledge > Categories.
|
||||
#. Create a new page category and set an approver group.
|
||||
Make sure users belonging to that group have valid email addresses.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
To use this module, you need to:
|
||||
|
||||
#. Go to Knowledge > Pages
|
||||
#. Create a new page and choose the previously created category.
|
||||
#. A notification is sent to the approvers group with a link to the
|
||||
page history to review.
|
||||
#. Depending on the review, the page history is approved or not.
|
||||
#. Users reading the page see the last approved version.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/knowledge/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/knowledge/issues/new?body=module:%20document_page_approval%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Savoir-faire Linux
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Odoo SA <info@odoo.com>
|
||||
* Savoir-faire Linux <support@savoirfairelinux.com>
|
||||
* Gervais Naoussi <gervaisnaoussi@gmail.com>
|
||||
* Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
|
||||
* Iván Todorovich <ivan.todorovich@gmail.com>
|
||||
* Victor M.M. Torres <victor.martin@tecnativa.com>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/knowledge <https://github.com/OCA/knowledge/tree/12.0/document_page_approval>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
5
document_page_approval/__init__.py
Normal file
5
document_page_approval/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import models
|
||||
from .hooks import post_init_hook, uninstall_hook
|
||||
29
document_page_approval/__manifest__.py
Normal file
29
document_page_approval/__manifest__.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
'name': 'Document Page Approval',
|
||||
'version': '12.0.1.0.0',
|
||||
"author": "Savoir-faire Linux, Odoo Community Association (OCA)",
|
||||
"website": "http://www.savoirfairelinux.com",
|
||||
"license": "AGPL-3",
|
||||
'category': 'Knowledge Management',
|
||||
'depends': [
|
||||
'document_page',
|
||||
'mail',
|
||||
],
|
||||
'data': [
|
||||
'data/email_template.xml',
|
||||
'views/document_page_approval.xml',
|
||||
'security/document_page_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
],
|
||||
'images': [
|
||||
'images/category.png',
|
||||
'images/page_history_list.png',
|
||||
'images/page_history.png',
|
||||
],
|
||||
'post_init_hook': 'post_init_hook',
|
||||
'uninstall_hook': 'uninstall_hook',
|
||||
'installable': True,
|
||||
}
|
||||
43
document_page_approval/data/email_template.xml
Normal file
43
document_page_approval/data/email_template.xml
Normal file
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<!-- If user wants to make upgrade-proof customizations to email templates, he should edit ir.model.data and check noupdate himself -->
|
||||
<record id="email_template_new_draft_need_approval" model="mail.template">
|
||||
<field name="name">Automated new draft need approval Notification Mail</field>
|
||||
<field name="email_from">${object.create_uid.company_id.email or 'noreply@localhost.com'}</field>
|
||||
<field name="subject">New version of ${object.display_name} needs your approval</field>
|
||||
<field name="model_id" ref="model_document_page_history"/>
|
||||
<field name="auto_delete" eval="True"/>
|
||||
<field name="lang">${object.create_uid.partner_id.lang}</field>
|
||||
<field name="body_html">
|
||||
<![CDATA[
|
||||
<p>Hello,</p>
|
||||
|
||||
<p>${object.create_uid.name} submited a new Change Request for <b>${object.page_id.name}</b> and it needs your approval.</p>
|
||||
|
||||
<h1><a href="${object.page_url}">${object.display_name}</a></h1>
|
||||
<p>
|
||||
<b>Modified by:</b> ${object.create_uid.name}<br/>
|
||||
<b>Date:</b> ${object.create_date}<br>
|
||||
</p>
|
||||
|
||||
% if object.summary:
|
||||
<h3>Summary</h3>
|
||||
<p>${object.summary}</p>
|
||||
% endif
|
||||
|
||||
<h3>Diff</h3>
|
||||
<div style="overflow-x:scroll; font-size:0.85em; margin-bottom:2em;">
|
||||
${object.diff|safe}
|
||||
</div>
|
||||
|
||||
<p>Have a great day.</p>
|
||||
|
||||
--<br/>
|
||||
|
||||
<p>Odoo</p>
|
||||
]]>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
25
document_page_approval/hooks.py
Normal file
25
document_page_approval/hooks.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Copyright 2018 Ivan Todorovich (<ivan.todorovich@gmail.com>)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
import logging
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def post_init_hook(cr, registry): # pragma: no cover
|
||||
# Set all pre-existing pages history to approved
|
||||
_logger.info('Setting history to approved.')
|
||||
cr.execute("""
|
||||
UPDATE document_page_history
|
||||
SET state='approved',
|
||||
approved_uid=create_uid,
|
||||
approved_date=create_date
|
||||
WHERE state IS NULL OR state = 'draft'
|
||||
""")
|
||||
|
||||
|
||||
def uninstall_hook(cr, registry): # pragma: no cover
|
||||
# Remove unapproved pages
|
||||
_logger.info('Deleting unapproved Change Requests.')
|
||||
cr.execute(
|
||||
"DELETE FROM document_page_history "
|
||||
"WHERE state != 'approved'"
|
||||
)
|
||||
298
document_page_approval/i18n/am.po
Normal file
298
document_page_approval/i18n/am.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/ar.po
Normal file
299
document_page_approval/i18n/ar.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/bg.po
Normal file
298
document_page_approval/i18n/bg.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/bs.po
Normal file
299
document_page_approval/i18n/bs.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/ca.po
Normal file
298
document_page_approval/i18n/ca.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/cs.po
Normal file
298
document_page_approval/i18n/cs.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/da.po
Normal file
298
document_page_approval/i18n/da.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/de.po
Normal file
299
document_page_approval/i18n/de.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Freigeben"
|
||||
|
||||
#. 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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
288
document_page_approval/i18n/document_page_approval.pot
Normal file
288
document_page_approval/i18n/document_page_approval.pot
Normal file
@@ -0,0 +1,288 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * document_page_approval
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: 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_terms:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid "<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead of creating a new one."
|
||||
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__is_approval_required
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history__is_approval_required
|
||||
msgid "Approval required"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model_terms: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_terms: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_terms: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_terms:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Back to draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model_terms: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_terms: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_terms: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.py:138
|
||||
#, 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.py:119
|
||||
#, 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_terms: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,field_description:document_page_approval.field_document_page__history_ids
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page__is_approval_required
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_history__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.py:126
|
||||
#, python-format
|
||||
msgid "New version of the document %s approved."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model_terms: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_terms:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Send to Review"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model_terms: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_terms: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_terms: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,field_description:document_page_approval.field_document_page__user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid "You are not authorized to do this.
|
||||
\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid "You are not authorized to do this.
|
||||
\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid "You are not authorized to do this.
|
||||
\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
298
document_page_approval/i18n/el.po
Normal file
298
document_page_approval/i18n/el.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/en_AU.po
Normal file
299
document_page_approval/i18n/en_AU.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/en_GB.po
Normal file
299
document_page_approval/i18n/en_GB.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es.po
Normal file
299
document_page_approval/i18n/es.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * document_page_approval
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
|
||||
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Aprobar"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
|
||||
msgid "Am I Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "Approval required"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Approve"
|
||||
msgstr "Aprobar"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Approved"
|
||||
msgstr "Aprobado"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
|
||||
msgid "Approved Date"
|
||||
msgstr "Fecha de aprobación"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
#: model:res.groups,name:document_page_approval.group_document_approver_user
|
||||
msgid "Approver"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
|
||||
msgid "Approver group"
|
||||
msgstr "Grupo aprobador"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Approver groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Back to draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, python-format
|
||||
msgid "Change request has been approved by %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page
|
||||
msgid "Document Page"
|
||||
msgstr "Página de documento"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page_history
|
||||
msgid "Document Page History"
|
||||
msgstr "Historia de página de documento"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Groups that can approve changes to this document"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
|
||||
msgid "Has changes pending approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "If true, changes of this page require approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
|
||||
msgid "New version of ${object.display_name} needs your approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:126
|
||||
#, python-format
|
||||
msgid "New version of the document %s approved."
|
||||
msgstr "Nueva versión del documento %s aprobada."
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Pending Approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval"
|
||||
msgstr "Requiere aprobación"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval for changes on this page or its child pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Send to Review"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
|
||||
"approved content."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document requires approval. If edited, you will create a new <b>Change "
|
||||
"Request</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_AR.po
Normal file
299
document_page_approval/i18n/es_AR.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_CL.po
Normal file
299
document_page_approval/i18n/es_CL.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_CO.po
Normal file
299
document_page_approval/i18n/es_CO.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/es_CR.po
Normal file
300
document_page_approval/i18n/es_CR.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * document_page_approval
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
|
||||
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Aprobar"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
|
||||
msgid "Am I Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "Approval required"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Approve"
|
||||
msgstr "Aprobar"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Approved"
|
||||
msgstr "Aprobado"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
|
||||
msgid "Approved Date"
|
||||
msgstr "Fecha de aprobación"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
#: model:res.groups,name:document_page_approval.group_document_approver_user
|
||||
msgid "Approver"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
|
||||
msgid "Approver group"
|
||||
msgstr "Grupo aprobador"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Approver groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Back to draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, python-format
|
||||
msgid "Change request has been approved by %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page
|
||||
msgid "Document Page"
|
||||
msgstr "Página de documento"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page_history
|
||||
msgid "Document Page History"
|
||||
msgstr "Historia de página de documento"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Groups that can approve changes to this document"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
|
||||
msgid "Has changes pending approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "If true, changes of this page require approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
|
||||
msgid "New version of ${object.display_name} needs your approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:126
|
||||
#, python-format
|
||||
msgid "New version of the document %s approved."
|
||||
msgstr "Nueva versión del documento %s aprobada."
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Pending Approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval"
|
||||
msgstr "Requiere aprobación"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval for changes on this page or its child pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Send to Review"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
|
||||
"approved content."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document requires approval. If edited, you will create a new <b>Change "
|
||||
"Request</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_DO.po
Normal file
299
document_page_approval/i18n/es_DO.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_EC.po
Normal file
299
document_page_approval/i18n/es_EC.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_ES.po
Normal file
299
document_page_approval/i18n/es_ES.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_MX.po
Normal file
299
document_page_approval/i18n/es_MX.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_PY.po
Normal file
299
document_page_approval/i18n/es_PY.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/es_VE.po
Normal file
299
document_page_approval/i18n/es_VE.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/et.po
Normal file
298
document_page_approval/i18n/et.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/eu.po
Normal file
298
document_page_approval/i18n/eu.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/fa.po
Normal file
298
document_page_approval/i18n/fa.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/fi.po
Normal file
298
document_page_approval/i18n/fi.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/fr.po
Normal file
299
document_page_approval/i18n/fr.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * document_page_approval
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
|
||||
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Approuver"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
|
||||
msgid "Am I Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "Approval required"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Approve"
|
||||
msgstr "Approuver"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Approved"
|
||||
msgstr "Approuvée"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
|
||||
msgid "Approved Date"
|
||||
msgstr "Date d'approbation"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
#: model:res.groups,name:document_page_approval.group_document_approver_user
|
||||
msgid "Approver"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
|
||||
msgid "Approver group"
|
||||
msgstr "Groupe approbateur"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Approver groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Back to draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, python-format
|
||||
msgid "Change request has been approved by %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page
|
||||
msgid "Document Page"
|
||||
msgstr "Page"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page_history
|
||||
msgid "Document Page History"
|
||||
msgstr "Historique de la page"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Groups that can approve changes to this document"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
|
||||
msgid "Has changes pending approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "If true, changes of this page require approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
|
||||
msgid "New version of ${object.display_name} needs your approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:126
|
||||
#, python-format
|
||||
msgid "New version of the document %s approved."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Pending Approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval"
|
||||
msgstr "Nécessite une approbation"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval for changes on this page or its child pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Send to Review"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
|
||||
"approved content."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document requires approval. If edited, you will create a new <b>Change "
|
||||
"Request</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/fr_CA.po
Normal file
299
document_page_approval/i18n/fr_CA.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/gl.po
Normal file
298
document_page_approval/i18n/gl.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/gu.po
Normal file
298
document_page_approval/i18n/gu.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/he.po
Normal file
298
document_page_approval/i18n/he.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/hi.po
Normal file
298
document_page_approval/i18n/hi.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
301
document_page_approval/i18n/hr.po
Normal file
301
document_page_approval/i18n/hr.po
Normal file
@@ -0,0 +1,301 @@
|
||||
# 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"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Odobri"
|
||||
|
||||
#. 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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/hu.po
Normal file
298
document_page_approval/i18n/hu.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/hy.po
Normal file
298
document_page_approval/i18n/hy.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: hy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/id.po
Normal file
298
document_page_approval/i18n/id.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/it.po
Normal file
300
document_page_approval/i18n/it.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Approvare"
|
||||
|
||||
#. 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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/ja.po
Normal file
298
document_page_approval/i18n/ja.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/ka.po
Normal file
298
document_page_approval/i18n/ka.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/kab.po
Normal file
298
document_page_approval/i18n/kab.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/kk.po
Normal file
298
document_page_approval/i18n/kk.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/ko.po
Normal file
298
document_page_approval/i18n/ko.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/ln.po
Normal file
298
document_page_approval/i18n/ln.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: ln\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/lo.po
Normal file
298
document_page_approval/i18n/lo.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/lt.po
Normal file
299
document_page_approval/i18n/lt.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/lv.po
Normal file
299
document_page_approval/i18n/lv.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/mk.po
Normal file
298
document_page_approval/i18n/mk.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/mn.po
Normal file
298
document_page_approval/i18n/mn.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/nb.po
Normal file
299
document_page_approval/i18n/nb.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/nl.po
Normal file
300
document_page_approval/i18n/nl.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Accordeer"
|
||||
|
||||
#. 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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/nl_BE.po
Normal file
299
document_page_approval/i18n/nl_BE.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/nl_NL.po
Normal file
300
document_page_approval/i18n/nl_NL.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Goedkeuren"
|
||||
|
||||
#. 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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/pl.po
Normal file
300
document_page_approval/i18n/pl.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/pt.po
Normal file
300
document_page_approval/i18n/pt.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Aprovar"
|
||||
|
||||
#. 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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/pt_BR.po
Normal file
299
document_page_approval/i18n/pt_BR.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/pt_PT.po
Normal file
300
document_page_approval/i18n/pt_PT.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Aprovar"
|
||||
|
||||
#. 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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/ro.po
Normal file
299
document_page_approval/i18n/ro.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/ru.po
Normal file
300
document_page_approval/i18n/ru.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/sk.po
Normal file
298
document_page_approval/i18n/sk.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/sl.po
Normal file
300
document_page_approval/i18n/sl.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * document_page_approval
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-04-24 22:33+0000\n"
|
||||
"PO-Revision-Date: 2018-04-24 22:33+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Am I Approver"
|
||||
msgstr "Odobri"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_am_i_owner
|
||||
msgid "Am I Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "Approval required"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Approve"
|
||||
msgstr "Odobri"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Approved"
|
||||
msgstr "Odobreno"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_date
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_date
|
||||
msgid "Approved Date"
|
||||
msgstr "Datum odobritve"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approved_uid
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_approved_uid
|
||||
msgid "Approved by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
#: model:res.groups,name:document_page_approval.group_document_approver_user
|
||||
msgid "Approver"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_gid
|
||||
msgid "Approver group"
|
||||
msgstr "Skupina pooblaščenih za odobritev"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Approver groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Back to draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, python-format
|
||||
msgid "Change request has been approved by %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page
|
||||
msgid "Document Page"
|
||||
msgstr "Stran dokumenta"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model,name:document_page_approval.model_document_page_history
|
||||
msgid "Document Page History"
|
||||
msgstr "Zgodovina strani dokumentov"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Draft"
|
||||
msgstr "Osnutek"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approver_group_ids
|
||||
msgid "Groups that can approve changes to this document"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_has_changes_pending_approval
|
||||
msgid "Has changes pending approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_history_is_approval_required
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_is_approval_required
|
||||
msgid "If true, changes of this page require approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:mail.template,subject:document_page_approval.email_template_new_draft_need_approval
|
||||
msgid "New version of ${object.display_name} needs your approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:126
|
||||
#, python-format
|
||||
msgid "New version of the document %s approved."
|
||||
msgstr "Nova verzija dokumenta %s odobrena."
|
||||
|
||||
#. module: document_page_approval
|
||||
#: selection:document.page.history,state:0
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "Pending Approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval"
|
||||
msgstr "Zahtevana odobritev"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,help:document_page_approval.field_document_page_approval_required
|
||||
msgid "Require approval for changes on this page or its child pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_history_form_inherit
|
||||
msgid "Send to Review"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.view_wiki_history_filter
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document has <b>Changes Pending Approval</b>. You are viewing the last "
|
||||
"approved content."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"This document requires approval. If edited, you will create a new <b>Change "
|
||||
"Request</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_history_page_url
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. module: document_page_approval
|
||||
#: model:ir.model.fields,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/sr.po
Normal file
299
document_page_approval/i18n/sr.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
300
document_page_approval/i18n/sr@latin.po
Normal file
300
document_page_approval/i18n/sr@latin.po
Normal file
@@ -0,0 +1,300 @@
|
||||
# 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"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/sv.po
Normal file
298
document_page_approval/i18n/sv.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/th.po
Normal file
298
document_page_approval/i18n/th.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/tr.po
Normal file
298
document_page_approval/i18n/tr.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/uk.po
Normal file
299
document_page_approval/i18n/uk.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
298
document_page_approval/i18n/vi.po
Normal file
298
document_page_approval/i18n/vi.po
Normal file
@@ -0,0 +1,298 @@
|
||||
# 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"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/zh_CN.po
Normal file
299
document_page_approval/i18n/zh_CN.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
299
document_page_approval/i18n/zh_TW.po
Normal file
299
document_page_approval/i18n/zh_TW.po
Normal file
@@ -0,0 +1,299 @@
|
||||
# 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"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: 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.ui.view,arch_db:document_page_approval.wiki_form_inherit
|
||||
msgid ""
|
||||
"<b>You already have a Draft Change Request for this page.</b>\n"
|
||||
" It is highly recommended that you edit that one instead "
|
||||
"of creating a new one."
|
||||
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
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:100
|
||||
#, python-format
|
||||
msgid "Can't approve page in '%s' state."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:76
|
||||
#, python-format
|
||||
msgid "Can't approve pages in '%s' state."
|
||||
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.py:138
|
||||
#, 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.py:119
|
||||
#, 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.py:126
|
||||
#, 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,field_description:document_page_approval.field_document_page_user_has_drafts
|
||||
msgid "User has drafts?"
|
||||
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 ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only approvers with these groups can approve this: "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:62
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can reopen Change Requests."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:79
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You are not authorized to do this.\r\n"
|
||||
"Only owners or approvers can request approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_page_approval
|
||||
#: code:addons/document_page_approval/models/document_page_history.py:59
|
||||
#, python-format
|
||||
msgid "You need to cancel it before reopening."
|
||||
msgstr ""
|
||||
BIN
document_page_approval/images/category.png
Normal file
BIN
document_page_approval/images/category.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
BIN
document_page_approval/images/page_history.png
Normal file
BIN
document_page_approval/images/page_history.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 59 KiB |
BIN
document_page_approval/images/page_history_list.png
Normal file
BIN
document_page_approval/images/page_history_list.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 57 KiB |
1
document_page_approval/models/__init__.py
Normal file
1
document_page_approval/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import document_page, document_page_history
|
||||
153
document_page_approval/models/document_page.py
Normal file
153
document_page_approval/models/document_page.py
Normal file
@@ -0,0 +1,153 @@
|
||||
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
|
||||
from odoo import api, fields, models
|
||||
from ast import literal_eval
|
||||
|
||||
|
||||
class DocumentPage(models.Model):
|
||||
"""Useful to know the state of a document."""
|
||||
|
||||
_inherit = 'document.page'
|
||||
|
||||
history_ids = fields.One2many(
|
||||
order='approved_date DESC',
|
||||
domain=[('state', '=', 'approved')],
|
||||
)
|
||||
|
||||
approved_date = fields.Datetime(
|
||||
'Approved Date',
|
||||
related='history_head.approved_date',
|
||||
store=True,
|
||||
index=True,
|
||||
readonly=True,
|
||||
)
|
||||
|
||||
approved_uid = fields.Many2one(
|
||||
'res.users',
|
||||
'Approved by',
|
||||
related='history_head.approved_uid',
|
||||
store=True,
|
||||
index=True,
|
||||
readonly=True,
|
||||
)
|
||||
|
||||
approval_required = fields.Boolean(
|
||||
'Require approval',
|
||||
help='Require approval for changes on this page or its child pages.',
|
||||
)
|
||||
|
||||
approver_gid = fields.Many2one(
|
||||
"res.groups",
|
||||
"Approver group",
|
||||
help='Users must also belong to the Approvers group',
|
||||
)
|
||||
|
||||
is_approval_required = fields.Boolean(
|
||||
'Approval required',
|
||||
help='If true, changes of this page require approval',
|
||||
compute='_compute_is_approval_required',
|
||||
)
|
||||
|
||||
am_i_approver = fields.Boolean(
|
||||
compute='_compute_am_i_approver'
|
||||
)
|
||||
|
||||
approver_group_ids = fields.Many2many(
|
||||
'res.groups',
|
||||
string='Approver groups',
|
||||
help='Groups that can approve changes to this document',
|
||||
compute='_compute_approver_group_ids',
|
||||
)
|
||||
|
||||
has_changes_pending_approval = fields.Boolean(
|
||||
compute='_compute_has_changes_pending_approval',
|
||||
string='Has changes pending approval'
|
||||
)
|
||||
|
||||
user_has_drafts = fields.Boolean(
|
||||
compute='_compute_user_has_drafts',
|
||||
string='User has drafts?',
|
||||
)
|
||||
|
||||
@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
|
||||
# if user belongs to 'Knowledge / Manager', he can approve anything
|
||||
if user.has_group('document_page.group_document_manager'):
|
||||
return True
|
||||
# to approve, user must have approver rights
|
||||
if not user.has_group(
|
||||
'document_page_approval.group_document_approver_user'):
|
||||
return False
|
||||
# if there aren't any approver_groups_defined, user can approve
|
||||
if not self.approver_group_ids:
|
||||
return True
|
||||
# to approve, user must belong to any of the approver groups
|
||||
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 _compute_user_has_drafts(self):
|
||||
history = self.env['document.page.history']
|
||||
for rec in self:
|
||||
changes = history.search_count([
|
||||
('page_id', '=', rec.id),
|
||||
('state', '=', 'draft')])
|
||||
rec.user_has_drafts = (changes > 0)
|
||||
|
||||
@api.multi
|
||||
def _create_history(self, vals):
|
||||
res = super(DocumentPage, self)._create_history(vals)
|
||||
res.action_to_approve()
|
||||
|
||||
@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
|
||||
186
document_page_approval/models/document_page_history.py
Normal file
186
document_page_approval/models/document_page_history.py
Normal file
@@ -0,0 +1,186 @@
|
||||
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.tools.translate import _
|
||||
from odoo import api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class DocumentPageHistory(models.Model):
|
||||
"""Useful to manage edition's workflow on a document."""
|
||||
|
||||
_name = 'document.page.history'
|
||||
_inherit = ['document.page.history', 'mail.thread']
|
||||
|
||||
state = fields.Selection([
|
||||
('draft', 'Draft'),
|
||||
('to approve', 'Pending Approval'),
|
||||
('approved', 'Approved'),
|
||||
('cancelled', 'Cancelled')],
|
||||
'Status',
|
||||
default='draft',
|
||||
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',
|
||||
related_sudo=False,
|
||||
)
|
||||
|
||||
page_url = fields.Text(
|
||||
compute='_compute_page_url',
|
||||
string="URL",
|
||||
)
|
||||
|
||||
@api.multi
|
||||
def action_draft(self):
|
||||
"""Set a change request as draft"""
|
||||
for rec in self:
|
||||
if not rec.state == 'cancelled':
|
||||
raise UserError(
|
||||
_('You need to cancel it before reopening.'))
|
||||
if not (rec.am_i_owner or rec.am_i_approver):
|
||||
raise UserError(
|
||||
_('You are not authorized to do this.\r\n'
|
||||
'Only owners or approvers can reopen Change Requests.'))
|
||||
rec.write({'state': 'draft'})
|
||||
|
||||
@api.multi
|
||||
def action_to_approve(self):
|
||||
"""Set a change request as to approve"""
|
||||
template = self.env.ref(
|
||||
'document_page_approval.email_template_new_draft_need_approval')
|
||||
approver_gid = self.env.ref(
|
||||
'document_page_approval.group_document_approver_user')
|
||||
for rec in self:
|
||||
if rec.state != 'draft':
|
||||
raise UserError(
|
||||
_("Can't approve pages in '%s' state.") % rec.state)
|
||||
if not (rec.am_i_owner or rec.am_i_approver):
|
||||
raise UserError(
|
||||
_('You are not authorized to do this.\r\n'
|
||||
'Only owners or approvers can request approval.'))
|
||||
# request approval
|
||||
if rec.is_approval_required:
|
||||
rec.write({'state': 'to approve'})
|
||||
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([u.id for u in users])
|
||||
rec.message_post_with_template(template.id)
|
||||
else:
|
||||
# auto-approve if approval is not required
|
||||
rec.action_approve()
|
||||
|
||||
@api.multi
|
||||
def action_approve(self):
|
||||
"""Set a change request as approved."""
|
||||
for rec in self:
|
||||
if rec.state not in ['draft', 'to approve']:
|
||||
raise UserError(
|
||||
_("Can't approve page in '%s' state.") % rec.state)
|
||||
if not rec.am_i_approver:
|
||||
raise UserError(_(
|
||||
'You are not authorized to do this.\r\n'
|
||||
'Only approvers with these groups can approve this: '
|
||||
) % ', '.join(
|
||||
[g.display_name
|
||||
for g in rec.page_id.approver_group_ids]))
|
||||
# Update state
|
||||
rec.write({
|
||||
'state': 'approved',
|
||||
'approved_date': fields.datetime.now(),
|
||||
'approved_uid': self.env.uid,
|
||||
})
|
||||
# Trigger computed field update
|
||||
rec.page_id._compute_history_head()
|
||||
# Notify state change
|
||||
rec.message_post(
|
||||
subtype='mt_comment',
|
||||
body=_(
|
||||
'Change request has been approved by %s.'
|
||||
) % (self.env.user.name)
|
||||
)
|
||||
# Notify followers a new version is available
|
||||
rec.page_id.message_post(
|
||||
subtype='mt_comment',
|
||||
body=_(
|
||||
'New version of the document %s approved.'
|
||||
) % (rec.page_id.name)
|
||||
)
|
||||
|
||||
@api.multi
|
||||
def action_cancel(self):
|
||||
"""Set a change request as cancelled."""
|
||||
self.write({'state': 'cancelled'})
|
||||
for rec in self:
|
||||
rec.message_post(
|
||||
subtype='mt_comment',
|
||||
body=_(
|
||||
'Change request <b>%s</b> has been cancelled by %s.'
|
||||
) % (rec.display_name, self.env.user.name)
|
||||
)
|
||||
|
||||
@api.multi
|
||||
def action_cancel_and_draft(self):
|
||||
"""Set a change request as draft, cancelling it first"""
|
||||
self.action_cancel()
|
||||
self.action_draft()
|
||||
|
||||
@api.multi
|
||||
def _compute_am_i_owner(self):
|
||||
"""Check if current user is the owner"""
|
||||
for rec in self:
|
||||
rec.am_i_owner = (rec.create_uid == self.env.user)
|
||||
|
||||
@api.multi
|
||||
def _compute_page_url(self):
|
||||
"""Compute the page url."""
|
||||
for page in self:
|
||||
base_url = self.env['ir.config_parameter'].sudo().get_param(
|
||||
'web.base.url',
|
||||
default='http://localhost:8069'
|
||||
)
|
||||
|
||||
page.page_url = (
|
||||
'{}/web#db={}&id={}&view_type=form&'
|
||||
'model=document.page.history').format(
|
||||
base_url,
|
||||
self.env.cr.dbname,
|
||||
page.id
|
||||
)
|
||||
|
||||
@api.multi
|
||||
def _compute_diff(self):
|
||||
"""Shows a diff between this version and the previous version"""
|
||||
history = self.env['document.page.history']
|
||||
for rec in self:
|
||||
domain = [
|
||||
('page_id', '=', rec.page_id.id),
|
||||
('state', '=', 'approved')]
|
||||
if rec.approved_date:
|
||||
domain.append(('approved_date', '<', rec.approved_date))
|
||||
prev = history.search(domain, limit=1, order='approved_date DESC')
|
||||
if prev:
|
||||
rec.diff = self._get_diff(prev.id, rec.id)
|
||||
else:
|
||||
rec.diff = self._get_diff(False, rec.id)
|
||||
6
document_page_approval/readme/CONFIGURE.rst
Normal file
6
document_page_approval/readme/CONFIGURE.rst
Normal file
@@ -0,0 +1,6 @@
|
||||
To configure this module, you need to:
|
||||
|
||||
#. Set a valid email address on the company settings.
|
||||
#. Go to Knowledge > Categories.
|
||||
#. Create a new page category and set an approver group.
|
||||
Make sure users belonging to that group have valid email addresses.
|
||||
6
document_page_approval/readme/CONTRIBUTORS.rst
Normal file
6
document_page_approval/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,6 @@
|
||||
* Odoo SA <info@odoo.com>
|
||||
* Savoir-faire Linux <support@savoirfairelinux.com>
|
||||
* Gervais Naoussi <gervaisnaoussi@gmail.com>
|
||||
* Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
|
||||
* Iván Todorovich <ivan.todorovich@gmail.com>
|
||||
* Victor M.M. Torres <victor.martin@tecnativa.com>
|
||||
2
document_page_approval/readme/DESCRIPTION.rst
Normal file
2
document_page_approval/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
This module adds a workflow to approve page modifications
|
||||
and show the approved version by default.
|
||||
8
document_page_approval/readme/USAGE.rst
Normal file
8
document_page_approval/readme/USAGE.rst
Normal file
@@ -0,0 +1,8 @@
|
||||
To use this module, you need to:
|
||||
|
||||
#. Go to Knowledge > Pages
|
||||
#. Create a new page and choose the previously created category.
|
||||
#. A notification is sent to the approvers group with a link to the
|
||||
page history to review.
|
||||
#. Depending on the review, the page history is approved or not.
|
||||
#. Users reading the page see the last approved version.
|
||||
36
document_page_approval/security/document_page_security.xml
Normal file
36
document_page_approval/security/document_page_security.xml
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="group_document_approver_user" model="res.groups">
|
||||
<field name="name">Approver</field>
|
||||
<field name="category_id" ref="knowledge.module_category_knowledge"/>
|
||||
<field name="implied_ids" eval="[(4, ref('document_page.group_document_editor'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="document_page.group_document_manager" model="res.groups">
|
||||
<field name="implied_ids" eval="[(4, ref('group_document_approver_user'))]"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.rule" id="rule_change_request_global">
|
||||
<field name="name">Change Request Global</field>
|
||||
<field name="model_id" ref="model_document_page_history"/>
|
||||
<field name="groups" eval="[(6, 0, [ref('knowledge.group_document_user')])]"/>
|
||||
<field name="domain_force">['|',('state','=','approved'),('create_uid','=',user.id)]</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
<field name="perm_unlink" eval="True"/>
|
||||
<field name="perm_create" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.rule" id="rule_change_request_approver">
|
||||
<field name="name">Change Request Approver</field>
|
||||
<field name="model_id" ref="model_document_page_history"/>
|
||||
<field name="groups" eval="[(6, 0, [ref('group_document_approver_user')])]"/>
|
||||
<field name="domain_force">[('state','!=','draft')]</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
<field name="perm_unlink" eval="True"/>
|
||||
<field name="perm_create" eval="True"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
1
document_page_approval/security/ir.model.access.csv
Normal file
1
document_page_approval/security/ir.model.access.csv
Normal file
@@ -0,0 +1 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
|
BIN
document_page_approval/static/description/icon.png
Normal file
BIN
document_page_approval/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
449
document_page_approval/static/description/index.html
Normal file
449
document_page_approval/static/description/index.html
Normal file
@@ -0,0 +1,449 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
|
||||
<title>Document Page Approval</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="document-page-approval">
|
||||
<h1 class="title">Document Page Approval</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/knowledge/tree/12.0/document_page_approval"><img alt="OCA/knowledge" src="https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/knowledge-12-0/knowledge-12-0-document_page_approval"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/118/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module adds a workflow to approve page modifications
|
||||
and show the approved version by default.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#configuration" id="id1">Configuration</a></li>
|
||||
<li><a class="reference internal" href="#usage" id="id2">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="configuration">
|
||||
<h1><a class="toc-backref" href="#id1">Configuration</a></h1>
|
||||
<p>To configure this module, you need to:</p>
|
||||
<ol class="arabic simple">
|
||||
<li>Set a valid email address on the company settings.</li>
|
||||
<li>Go to Knowledge > Categories.</li>
|
||||
<li>Create a new page category and set an approver group.
|
||||
Make sure users belonging to that group have valid email addresses.</li>
|
||||
</ol>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#id2">Usage</a></h1>
|
||||
<p>To use this module, you need to:</p>
|
||||
<ol class="arabic simple">
|
||||
<li>Go to Knowledge > Pages</li>
|
||||
<li>Create a new page and choose the previously created category.</li>
|
||||
<li>A notification is sent to the approvers group with a link to the
|
||||
page history to review.</li>
|
||||
<li>Depending on the review, the page history is approved or not.</li>
|
||||
<li>Users reading the page see the last approved version.</li>
|
||||
</ol>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/knowledge/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/knowledge/issues/new?body=module:%20document_page_approval%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Savoir-faire Linux</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Odoo SA <<a class="reference external" href="mailto:info@odoo.com">info@odoo.com</a>></li>
|
||||
<li>Savoir-faire Linux <<a class="reference external" href="mailto:support@savoirfairelinux.com">support@savoirfairelinux.com</a>></li>
|
||||
<li>Gervais Naoussi <<a class="reference external" href="mailto:gervaisnaoussi@gmail.com">gervaisnaoussi@gmail.com</a>></li>
|
||||
<li>Maxime Chambreuil <<a class="reference external" href="mailto:mchambreuil@opensourceintegrators.com">mchambreuil@opensourceintegrators.com</a>></li>
|
||||
<li>Iván Todorovich <<a class="reference external" href="mailto:ivan.todorovich@gmail.com">ivan.todorovich@gmail.com</a>></li>
|
||||
<li>Victor M.M. Torres <<a class="reference external" href="mailto:victor.martin@tecnativa.com">victor.martin@tecnativa.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/knowledge/tree/12.0/document_page_approval">OCA/knowledge</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
document_page_approval/tests/__init__.py
Normal file
1
document_page_approval/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_document_page_approval
|
||||
127
document_page_approval/tests/test_document_page_approval.py
Normal file
127
document_page_approval/tests/test_document_page_approval.py
Normal file
@@ -0,0 +1,127 @@
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestDocumentPageApproval(common.TransactionCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestDocumentPageApproval, self).setUp()
|
||||
self.page_obj = self.env['document.page']
|
||||
self.history_obj = self.env['document.page.history']
|
||||
# demo
|
||||
self.category1 = self.env.ref('document_page.demo_category1')
|
||||
self.page1 = self.env.ref('document_page.demo_page1')
|
||||
self.approver_gid = self.env.ref(
|
||||
'document_page_approval.group_document_approver_user')
|
||||
self.env.ref('base.user_root').write({
|
||||
'groups_id': [(4, self.approver_gid.id)],
|
||||
})
|
||||
# demo_approval
|
||||
self.category2 = self.page_obj.create({
|
||||
'name': 'This category requires approval',
|
||||
'type': 'category',
|
||||
'approval_required': True,
|
||||
'approver_gid': self.approver_gid.id,
|
||||
})
|
||||
self.page2 = self.page_obj.create({
|
||||
'name': 'This page requires approval',
|
||||
'parent_id': self.category2.id,
|
||||
'content': 'This content will require approval',
|
||||
})
|
||||
|
||||
def test_approval_required(self):
|
||||
page = self.page2
|
||||
self.assertTrue(page.is_approval_required)
|
||||
self.assertTrue(page.has_changes_pending_approval)
|
||||
self.assertEqual(len(page.history_ids), 0)
|
||||
|
||||
def test_change_request_approve(self):
|
||||
page = self.page2
|
||||
chreq = self.history_obj.search([
|
||||
('page_id', '=', page.id),
|
||||
('state', '!=', 'approved')
|
||||
])[0]
|
||||
|
||||
# It should automatically be in 'to approve' state
|
||||
self.assertEqual(chreq.state, 'to approve')
|
||||
self.assertNotEqual(chreq.content, page.content)
|
||||
|
||||
# who_am_i
|
||||
self.assertTrue(chreq.am_i_owner)
|
||||
self.assertTrue(chreq.am_i_approver)
|
||||
|
||||
# approve
|
||||
chreq.action_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.action_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')
|
||||
]).action_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.action_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.action_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.action_draft()
|
||||
self.assertEqual(chreq.state, 'draft')
|
||||
self.assertNotEqual(page.content, chreq.content)
|
||||
self.assertNotEqual(page.approved_date, chreq.approved_date)
|
||||
self.assertNotEqual(page.approved_uid, chreq.approved_uid)
|
||||
|
||||
chreq.action_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]
|
||||
self.assertIsNotNone(page.page_url)
|
||||
211
document_page_approval/views/document_page_approval.xml
Normal file
211
document_page_approval/views/document_page_approval.xml
Normal file
@@ -0,0 +1,211 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<!-- History Form View -->
|
||||
<record id="wiki_history_form_inherit" model="ir.ui.view">
|
||||
<field name="name">document.page.history.form</field>
|
||||
<field name="model">document.page.history</field>
|
||||
<field name="inherit_id" ref="document_page.wiki_history_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<sheet position="before">
|
||||
<header>
|
||||
<!-- draft -> to approve -->
|
||||
<button name="action_to_approve" type="object" string="Send to Review" class="oe_highlight"
|
||||
attrs="{'invisible':['|','|',('is_approval_required','=',False),('am_i_owner','=',False),('state', 'not in', ['draft'])]}"/>
|
||||
<!-- approve if i am approver -->
|
||||
<button name="action_approve" type="object" string="Approve" class="oe_highlight"
|
||||
attrs="{'invisible':['|','|',('is_approval_required','=',False),('am_i_approver','=',False),('state','not in',['draft','to approve'])]}"/>
|
||||
<!-- approve if it's not required and i am owner -->
|
||||
<button name="action_approve" type="object" string="Approve" class="oe_highlight"
|
||||
attrs="{'invisible':['|','|',('is_approval_required','=',True),('am_i_owner','=',False),('state','not in',['draft', 'to approve'])]}"/>
|
||||
<!-- cancel if i am owner or approver -->
|
||||
<button name="action_cancel" type="object" string="Cancel"
|
||||
attrs="{'invisible':['|','&',('am_i_owner','=',False),('am_i_approver','=',False),('state','not in',['draft','to approve'])]}"/>
|
||||
<!-- reopen if i am owner or approver -->
|
||||
<button name="action_draft" type="object" string="Back to draft"
|
||||
attrs="{'invisible':['|','&',('am_i_owner','=',False),('am_i_approver','=',False),('state','not in',['cancelled'])]}"/>
|
||||
<!-- cancel & reopen, if i am owner or approver -->
|
||||
<button name="action_draft" type="object" string="Back to draft"
|
||||
attrs="{'invisible':['|','&',('am_i_owner','=',False),('am_i_approver','=',False),('state','not in',['to approve'])]}"/>
|
||||
<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>
|
||||
<!-- Readonly fields -->
|
||||
<field name="content" position="attributes"><attribute name="attrs">{'readonly': [('state', 'not in', ['draft'])]}</attribute></field>
|
||||
<field name="page_id" position="attributes"><attribute name="attrs">{'readonly': [('state', 'not in', ['draft'])]}</attribute></field>
|
||||
<field name="name" position="attributes"><attribute name="attrs">{'readonly': [('state', 'not in', ['draft'])]}</attribute></field>
|
||||
<field name="summary" position="attributes"><attribute name="attrs">{'readonly': [('state', 'not in', ['draft'])]}</attribute></field>
|
||||
<!-- Chatter -->
|
||||
<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>
|
||||
|
||||
<!-- History Form View Manager Rights -->
|
||||
<record id="wiki_history_form_inherit_manager" model="ir.ui.view">
|
||||
<field name="name">document.page.history.form</field>
|
||||
<field name="model">document.page.history</field>
|
||||
<field name="inherit_id" ref="wiki_history_form_inherit"/>
|
||||
<field name="groups_id" eval="[(6, 0, [ref('document_page.group_document_manager')])]"/>
|
||||
<field name="arch" type="xml">
|
||||
<!-- Readonly fields -->
|
||||
<field name="name" position="attributes"><attribute name="attrs">{'readonly': False}</attribute></field>
|
||||
<field name="summary" position="attributes"><attribute name="attrs">{'readonly': False}</attribute></field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Page Form View -->
|
||||
<record id="wiki_form_inherit" model="ir.ui.view">
|
||||
<field name="name">document.page.form</field>
|
||||
<field name="model">document.page</field>
|
||||
<field name="inherit_id" ref="document_page.view_wiki_form" />
|
||||
<field name="arch" type="xml">
|
||||
|
||||
<sheet position="before">
|
||||
<div class="alert alert-info" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': [('has_changes_pending_approval','=',False)]}">
|
||||
This document has <b>Changes Pending Approval</b>. You are viewing the last approved content.
|
||||
</div>
|
||||
<div class="alert alert-warning oe_edit_only" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': [('is_approval_required','=',False)]}">
|
||||
This document requires approval. If edited, you will create a new <b>Change Request</b>.
|
||||
</div>
|
||||
<div class="alert alert-warning oe_edit_only" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': [('user_has_drafts','=',False)]}">
|
||||
<b>You already have a Draft Change Request for this page.</b>
|
||||
It is highly recommended that you edit that one instead of creating a new one.
|
||||
</div>
|
||||
<field name="is_approval_required" invisible="1"/>
|
||||
<field name="has_changes_pending_approval" invisible="1"/>
|
||||
<field name="user_has_drafts" invisible="1"/>
|
||||
</sheet>
|
||||
|
||||
<button name="toggle_active" position="after">
|
||||
<button class="oe_stat_button" name="action_changes_pending_approval" string="Change Requests" type="object"
|
||||
attrs="{'invisible':[('has_changes_pending_approval','=',False),('user_has_drafts','=',False)]}" icon="fa-edit"/>
|
||||
</button>
|
||||
|
||||
<field name="content_uid" position="after">
|
||||
<field name="approved_uid"/>
|
||||
</field>
|
||||
|
||||
<field name="content_date" position="replace">
|
||||
<field name="approved_date"/>
|
||||
</field>
|
||||
|
||||
<field name="history_ids" position="inside">
|
||||
<tree>
|
||||
<field name="id"/>
|
||||
<field name="approved_date"/>
|
||||
<field name="summary"/>
|
||||
<field name="create_uid"/>
|
||||
<field name="approved_uid"/>
|
||||
</tree>
|
||||
</field>
|
||||
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Page Menu Form View -->
|
||||
<record id="view_wiki_menu_form_inherit" model="ir.ui.view">
|
||||
<field name="name">document.page.form</field>
|
||||
<field name="model">document.page</field>
|
||||
<field name="inherit_id" ref="document_page.view_wiki_menu_form" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="content" position="before">
|
||||
<group class="oe_read_only" attrs="{'invisible':[('type','!=','content')]}">
|
||||
<field name="approved_date" />
|
||||
<field name="approved_uid" />
|
||||
</group>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Catgory Form View -->
|
||||
<record id="view_category_form_inherit" model="ir.ui.view">
|
||||
<field name="name">document.page.category.form</field>
|
||||
<field name="model">document.page</field>
|
||||
<field name="inherit_id" ref="document_page.view_category_form" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="parent_id" position="after">
|
||||
<field name="approval_required"/>
|
||||
<field name="approver_gid"
|
||||
attrs="{'invisible':[('approval_required','!=', True)], 'required':[('approval_required','=', True)]}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- History Tree view -->
|
||||
<record id="view_wiki_history_tree_inherit" model="ir.ui.view">
|
||||
<field name="name">document.page.history.tree</field>
|
||||
<field name="model">document.page.history</field>
|
||||
<field name="inherit_id" ref="document_page.view_wiki_history_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<tree position="attributes">
|
||||
<attribute name="decoration-info">state=='draft'</attribute>
|
||||
<attribute name="decoration-primary">state=='to approve'</attribute>
|
||||
<attribute name="decoration-muted">state=='cancelled'</attribute>
|
||||
</tree>
|
||||
<tree position="inside">
|
||||
<field name="state"/>
|
||||
<field name="approved_uid"/>
|
||||
<field name="approved_date"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
<!-- History Search view -->
|
||||
<record id="view_wiki_history_filter" model="ir.ui.view">
|
||||
<field name="name">document.page.history.search</field>
|
||||
<field name="model">document.page.history</field>
|
||||
<field name="inherit_id" ref="document_page.view_wiki_history_filter"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="page_id" position="before">
|
||||
<field name="state"/>
|
||||
</field>
|
||||
<field name="create_uid" position="after">
|
||||
<filter name="draft" string="Draft" domain="[('state','=','draft')]"/>
|
||||
<filter name="pending" string="Pending Approval" domain="[('state','=','to approve')]"/>
|
||||
<filter name="approved" string="Approved" domain="[('state','=','approved')]"/>
|
||||
<filter name="cancelled" string="Cancelled" domain="[('state','=','cancelled')]"/>
|
||||
</field>
|
||||
<filter name="group_by_author" position="before">
|
||||
<filter name="group_state" string="State" context="{'group_by':'state'}" />
|
||||
</filter>
|
||||
<filter name="group_by_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_draft': 1, 'search_default_pending': 1}</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>
|
||||
@@ -1 +1 @@
|
||||
12.0.20190430.0
|
||||
12.0.20190826.0
|
||||
@@ -9,6 +9,7 @@ setuptools.setup(
|
||||
version=version,
|
||||
install_requires=[
|
||||
'odoo12-addon-document_page',
|
||||
'odoo12-addon-document_page_approval',
|
||||
'odoo12-addon-document_url',
|
||||
'odoo12-addon-knowledge',
|
||||
],
|
||||
|
||||
1
setup/document_page_approval/odoo/addons/document_page_approval
Symbolic link
1
setup/document_page_approval/odoo/addons/document_page_approval
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../document_page_approval
|
||||
6
setup/document_page_approval/setup.py
Normal file
6
setup/document_page_approval/setup.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['setuptools-odoo'],
|
||||
odoo_addon=True,
|
||||
)
|
||||
Reference in New Issue
Block a user