[FIX+IMP] document_page:

* Changed history widget to html.
* Improved views and added followers to pages.
* Updated document_page pot and es translations.
* document_page:^Cissing dependency.
This commit is contained in:
Glen Sojo 2015-07-23 12:50:52 -06:00 committed by Justine Doutreloux
parent f105336e97
commit 1d8d88c264
7 changed files with 1040 additions and 950 deletions

View File

@ -33,6 +33,7 @@ Web pages
'license': 'AGPL-3', 'license': 'AGPL-3',
'depends': [ 'depends': [
'knowledge', 'knowledge',
'mail',
], ],
'data': [ 'data': [
'wizard/document_page_create_menu_view.xml', 'wizard/document_page_create_menu_view.xml',

View File

@ -27,6 +27,7 @@ _logger = logging.getLogger(__name__)
class document_page(models.Model): class document_page(models.Model):
_name = "document.page" _name = "document.page"
_inherit = ['mail.thread']
_description = "Document Page" _description = "Document Page"
_order = 'name' _order = 'name'

View File

@ -44,39 +44,58 @@
<field name="name">document.page.form</field> <field name="name">document.page.form</field>
<field name="model">document.page</field> <field name="model">document.page</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Document Page" version="7.0"> <form string="Document Page">
<sheet>
<field name="type" invisible="1"/>
<h1><field name="name" placeholder="Name"/></h1>
<group>
<group>
<field name="parent_id"
string="Category"
context="{'default_type':'category'}"/>
</group>
<group>
<field name="write_uid"
groups="base.group_no_one"/>
<field name="write_date"
groups="base.group_no_one"/>
<field name="menu_id"
groups="base.group_no_one"/>
</group>
</group>
<separator string="Content" class="oe_edit_only" />
<field name="content"
placeholder="e.g. Once upon a time..."
class="oe_edit_only"
widget="html" />
<separator string="Last Content" />
<div class="oe_document_page">
<field name="display_content"
widget="html"
class="oe_view_only"
options='{"safe": True}' />
</div>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</form>
</field>
</record>
<record id="view_wiki_menu_form" model="ir.ui.view">
<field name="name">document.page.menu.form</field>
<field name="model">document.page</field>
<field name="arch" type="xml">
<form string="Document Page">
<field name="type" invisible="1"/> <field name="type" invisible="1"/>
<h1><field name="name" placeholder="Name"/></h1> <h1><field name="name" placeholder="Name"/></h1>
<group class="oe_edit_only">
<group>
<field name="parent_id"
string="Category"
context="{'default_type':'category'}"/>
</group>
<group>
<field name="write_uid"
groups="base.group_no_one"/>
<field name="write_date"
groups="base.group_no_one"/>
<field name="menu_id"
groups="base.group_no_one"/>
</group>
</group>
<div class="oe_edit_only"
attrs="{'invisible':[('type','=','content')]}">
<label for="content" string="Template"/>
that will be used as a content template for all new page of this category.
</div>
<field name="content"
placeholder="e.g. Once upon a time..."
class="oe_edit_only"
widget="html" />
<div class="oe_document_page"> <div class="oe_document_page">
<field name="display_content" <field name="display_content"
widget="html" widget="html"
class="oe_view_only" class="oe_view_only"
options='{"safe": True}' /> options='{"safe": True}' />
</div> </div>
</form> </form>
</field> </field>
@ -108,6 +127,70 @@
</field> </field>
</record> </record>
<!-- Category Views -->
<record id="view_category_form" model="ir.ui.view">
<field name="name">document.page.category.form</field>
<field name="model">document.page</field>
<field name="arch" type="xml">
<form string="Category">
<sheet>
<field name="type" invisible="1"/>
<h1><field name="name" placeholder="Name"/></h1>
<group>
<group>
<field name="parent_id" string="Category"
context="{'default_type':'category'}"/>
</group>
<group>
<field name="write_uid"
groups="base.group_no_one"/>
<field name="write_date"
groups="base.group_no_one"/>
<field name="menu_id"
groups="base.group_no_one"/>
</group>
</group>
<notebook>
<page string="Template" name="template">
<div>
<label for="content"
string="Template that will be used as a content template for all new page of this category."/>
</div>
<field name="content"
placeholder="e.g. Once upon a time..."
widget="html" />
</page>
<page string="Documents" name="documents">
<div class="oe_document_page">
<field name="display_content"
widget="html"
class="oe_view_only"
options='{"safe": True}' />
</div>
</page>
</notebook>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</form>
</field>
</record>
<record id="view_category_tree" model="ir.ui.view">
<field name="name">document.page.category.tree</field>
<field name="model">document.page</field>
<field name="arch" type="xml">
<tree string="Categories">
<field name="name"/>
<field name="parent_id"/>
<field name="create_uid" invisible="1"/>
<field name="write_uid"/>
<field name="write_date"/>
</tree>
</field>
</record>
<!-- page action --> <!-- page action -->
<record id="action_page" model="ir.actions.act_window"> <record id="action_page" model="ir.actions.act_window">
@ -125,7 +208,18 @@
</p> </p>
</field> </field>
</record> </record>
<record id="action_page_view_tree" model="ir.actions.act_window.view">
<field name="sequence" eval="0" />
<field name="view_mode">tree</field>
<field name="view_id" ref="view_wiki_tree"/>
<field name="act_window_id" ref="action_page"/>
</record>
<record id="action_page_view_form" model="ir.actions.act_window.view">
<field name="sequence" eval="5" />
<field name="view_mode">form</field>
<field name="view_id" ref="view_wiki_form"/>
<field name="act_window_id" ref="action_page"/>
</record>
<menuitem id="menu_page" <menuitem id="menu_page"
parent="menu_wiki" parent="menu_wiki"
name="Pages" name="Pages"
@ -139,9 +233,21 @@
<field name="context">{'default_type': 'category'}</field> <field name="context">{'default_type': 'category'}</field>
<field name="view_type">form</field> <field name="view_type">form</field>
<field name="view_mode">tree,form</field> <field name="view_mode">tree,form</field>
<field name="view_id" ref="view_wiki_tree"/> <field name="view_id" ref="view_category_tree"/>
<field name="search_view_id" ref="view_wiki_filter"/> <field name="search_view_id" ref="view_wiki_filter"/>
</record> </record>
<record id="action_category_view_tree" model="ir.actions.act_window.view">
<field name="sequence" eval="0" />
<field name="view_mode">tree</field>
<field name="view_id" ref="view_category_tree"/>
<field name="act_window_id" ref="action_category"/>
</record>
<record id="action_category_view_form" model="ir.actions.act_window.view">
<field name="sequence" eval="5" />
<field name="view_mode">form</field>
<field name="view_id" ref="view_category_form"/>
<field name="act_window_id" ref="action_category"/>
</record>
<menuitem id="menu_category" <menuitem id="menu_category"
parent="menu_wiki" parent="menu_wiki"
name="Categories" name="Categories"
@ -171,7 +277,8 @@
<label for="create_date" class="oe_edit_only"/> <label for="create_date" class="oe_edit_only"/>
<field name="create_date" readonly="1"/> <field name="create_date" readonly="1"/>
<label for="content" class="oe_edit_only"/> <label for="content" class="oe_edit_only"/>
<field name="content" colspan="4"/> <field name="content" colspan="4"
widget="html" options='{"safe": True}'/>
</form> </form>
</field> </field>
</record> </record>

View File

@ -1,13 +1,13 @@
# Translation of OpenERP Server. # Translation of Odoo Server.
# This file contains the translation of the following modules: # This file contains the translation of the following modules:
# * document_page # * document_page
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n" "Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-14 00:10+0000\n" "POT-Creation-Date: 2015-07-27 20:33+0000\n"
"PO-Revision-Date: 2014-08-14 00:10+0000\n" "PO-Revision-Date: 2015-07-27 20:33+0000\n"
"Last-Translator: <>\n" "Last-Translator: <>\n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -15,213 +15,6 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \n" "Plural-Forms: \n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Name"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "e.g. Once upon a time..."
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/wiki_make_index.py:52
#, python-format
msgid "There is no section in this Page."
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page #. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page #: model:ir.actions.act_window,help:document_page.action_page
msgid "<p class=\"oe_view_nocontent_create\">\n" msgid "<p class=\"oe_view_nocontent_create\">\n"
@ -231,29 +24,78 @@ msgid "<p class=\"oe_view_nocontent_create\">\n"
msgstr "" msgstr ""
#. module: document_page #. module: document_page
#: view:document.page.create.menu:0 #: view:document.page:document_page.view_wiki_filter
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "Cancel"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_category_tree
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""
#. module: document_page
#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff
msgid "Close"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
#: view:document.page:document_page.view_wiki_form
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu" msgid "Create Menu"
msgstr "" msgstr ""
#. module: document_page #. module: document_page
#: field:document.page,display_content:0 #: field:document.page.create.menu,create_uid:0
msgid "Displayed Content" #: field:wizard.document.page.history.show_diff,create_uid:0
msgid "Created by"
msgstr "" msgstr ""
#. module: document_page #. module: document_page
#: code:addons/document_page/document_page.py:129 #: field:document.page,create_date:0
#: code:addons/document_page/wizard/document_page_show_diff.py:50 #: field:document.page.create.menu,create_date:0
#: code:addons/document_page/wizard/wiki_make_index.py:52 #: field:wizard.document.page.history.show_diff,create_date:0
#, python-format msgid "Created on"
msgid "Warning!"
msgstr "" msgstr ""
#. module: document_page #. module: document_page
#: view:document.page.create.menu:0 #: field:document.page.history,create_date:0
#: view:wizard.document.page.history.show_diff:0 msgid "Date"
msgid "Cancel" msgstr ""
#. module: document_page
#: help:document.page,message_last_post:0
msgid "Date of the last message posted on the record."
msgstr "" msgstr ""
#. module: document_page #. module: document_page
@ -262,12 +104,245 @@ msgid "Diff"
msgstr "" msgstr ""
#. module: document_page #. module: document_page
#: view:document.page:0 #: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff
msgid "Difference"
msgstr ""
#. module: document_page
#: view:document.page.history:document_page.view_wiki_history_tree
msgid "Document History"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
#: view:document.page:document_page.view_wiki_form
#: view:document.page:document_page.view_wiki_menu_form
#: view:document.page:document_page.view_wiki_tree
#: view:document.page:document_page.view_wiki_tree_children
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: view:document.page.history:document_page.wiki_history_form
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
msgid "Document Type" msgid "Document Type"
msgstr "" msgstr ""
#. module: document_page #. module: document_page
#: field:document.page,child_ids:0 #: view:document.page:document_page.view_category_form
msgid "Children" msgid "Documents"
msgstr "" msgstr ""
#. module: document_page
#: field:document.page,message_follower_ids:0
msgid "Followers"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
msgid "Group By..."
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: help:document.page,message_summary:0
msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views."
msgstr ""
#. module: document_page
#: field:document.page,id:0
#: field:document.page.create.menu,id:0
#: field:document.page.history,id:0
#: field:wizard.document.page.history.show_diff,id:0
msgid "ID"
msgstr ""
#. module: document_page
#: help:document.page,message_unread:0
msgid "If checked new messages require your attention."
msgstr ""
#. module: document_page
#: field:document.page,message_is_follower:0
msgid "Is a Follower"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_wiki_form
msgid "Last Content"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: field:document.page,message_last_post:0
msgid "Last Message Date"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,write_uid:0
#: field:document.page.history,write_uid:0
#: field:wizard.document.page.history.show_diff,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,write_date:0
#: field:document.page.history,write_date:0
#: field:wizard.document.page.history.show_diff,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "Menu Information"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page,message_ids:0
msgid "Messages"
msgstr ""
#. module: document_page
#: help:document.page,message_ids:0
msgid "Messages and communication history"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
#: view:document.page:document_page.view_wiki_menu_form
msgid "Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,message_summary:0
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_category_form
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_category_form
msgid "Template that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:175
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: field:document.page,message_unread:0
msgid "Unread Messages"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
msgid "e.g. Once upon a time..."
msgstr ""
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "or"
msgstr ""

View File

@ -1,24 +1,51 @@
# Spanish translation for openobject-addons # Translation of Odoo Server.
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file contains the translation of the following modules:
# This file is distributed under the same license as the openobject-addons package. # * document_page
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openobject-addons\n" "Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n" "POT-Creation-Date: 2015-07-27 20:33+0000\n"
"PO-Revision-Date: 2013-06-18 07:39+0000\n" "PO-Revision-Date: 2015-07-27 20:33+0000\n"
"Last-Translator: Pedro Manuel Baeza <pedro.baeza@gmail.com>\n" "Last-Translator: Glen Sojo <glen.sojo@clearcorp.co.cr>\n"
"Language-Team: Spanish <es@li.org>\n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: \n"
"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "Plural-Forms: \n"
"X-Generator: Launchpad (build 16831)\n"
#. module: document_page #. module: document_page
#: view:document.page:0 #: model:ir.actions.act_window,help:document_page.action_page
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Click to create a new web page.\n"
" </p>\n"
" "
msgstr "<p class=\"oe_view_nocontent_create\">\n"
"Pulse para crear una nueva página web.\n"
"</p>\n"
" "
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page
#: view:document.page:document_page.view_category_tree
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorías"
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
#: field:document.page,parent_id:0 #: field:document.page,parent_id:0
#: selection:document.page,type:0 #: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category #: model:ir.actions.act_window,name:document_page.action_category
@ -26,35 +53,18 @@ msgid "Category"
msgstr "Categoría" msgstr "Categoría"
#. module: document_page #. module: document_page
#: view:document.page:0 #: field:document.page,child_ids:0
#: field:document.page,write_uid:0 msgid "Children"
msgid "Last Contributor" msgstr "Hijos"
msgstr "Último colaborador"
#. module: document_page #. module: document_page
#: view:document.page:0 #: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff
#: field:document.page,create_uid:0 msgid "Close"
msgid "Author" msgstr "Cerrar"
msgstr "Autor"
#. module: document_page #. module: document_page
#: field:document.page,menu_id:0 #: view:document.page:document_page.view_wiki_filter
msgid "Menu" #: view:document.page:document_page.view_wiki_form
msgstr "Menú"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Historial página"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0 #: field:document.page,content:0
#: selection:document.page,type:0 #: selection:document.page,type:0
#: field:document.page.history,content:0 #: field:document.page.history,content:0
@ -62,92 +72,208 @@ msgid "Content"
msgstr "Contenido" msgstr "Contenido"
#. module: document_page #. module: document_page
#: view:document.page:0 #: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "Group By..." #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
msgstr "Agrupar por..." #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Crear menú"
#. module: document_page #. module: document_page
#: view:document.page:0 #: field:document.page.create.menu,create_uid:0
msgid "Template" #: field:wizard.document.page.history.show_diff,create_uid:0
msgstr "Plantilla" msgid "Created by"
msgstr "Creado por"
#. module: document_page #. module: document_page
#: view:document.page:0 #: field:document.page,create_date:0
msgid "" #: field:document.page.create.menu,create_date:0
"that will be used as a content template for all new page of this category." #: field:wizard.document.page.history.show_diff,create_date:0
msgstr "" msgid "Created on"
"esto será usado como una plantilla de contenido para todas las páginas de " msgstr "Creado en"
"esta categoría."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Título"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tipo"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificado por"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "o"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipo de página"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Información del menú"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Historial de páginas"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "No hay cambios en las revisiones."
#. module: document_page #. module: document_page
#: field:document.page.history,create_date:0 #: field:document.page.history,create_date:0
msgid "Date" msgid "Date"
msgstr "Fecha" msgstr "Fecha"
#. module: document_page
#: help:document.page,message_last_post:0
msgid "Date of the last message posted on the record."
msgstr "Fecha del último mensaje publicado en el registro."
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Dif."
#. module: document_page #. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff #: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values #: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0 #: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff
msgid "Difference" msgid "Difference"
msgstr "Diferencia" msgstr "Diferencia"
#. module: document_page
#: view:document.page.history:document_page.view_wiki_history_tree
msgid "Document History"
msgstr "Historial del Documento"
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
#: view:document.page:document_page.view_wiki_form
#: view:document.page:document_page.view_wiki_menu_form
#: view:document.page:document_page.view_wiki_tree
#: view:document.page:document_page.view_wiki_tree_children
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page
#: view:document.page.history:document_page.wiki_history_form
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
msgid "Document Type"
msgstr "Tipo de documento"
#. module: document_page
#: view:document.page:document_page.view_category_form
msgid "Documents"
msgstr "Documentos"
#. module: document_page
#: field:document.page,message_follower_ids:0
msgid "Followers"
msgstr "Seguidores"
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
msgid "Group By..."
msgstr "Agrupar por..."
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Historial"
#. module: document_page
#: help:document.page,message_summary:0
msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views."
msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban."
#. module: document_page
#: field:document.page,id:0
#: field:document.page.create.menu,id:0
#: field:document.page.history,id:0
#: field:wizard.document.page.history.show_diff,id:0
msgid "ID"
msgstr "ID"
#. module: document_page
#: help:document.page,message_unread:0
msgid "If checked new messages require your attention."
msgstr "Si está marcado nuevos mensajes requieren su atención."
#. module: document_page
#: field:document.page,message_is_follower:0
msgid "Is a Follower"
msgstr "Es un seguidor"
#. module: document_page
#: view:document.page:document_page.view_wiki_form
msgid "Last Content"
msgstr "Ultimo contenido"
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Último colaborador"
#. module: document_page
#: field:document.page,message_last_post:0
msgid "Last Message Date"
msgstr "Fecha del ultimo mensaje"
#. module: document_page
#: field:document.page.create.menu,write_uid:0
#: field:document.page.history,write_uid:0
#: field:wizard.document.page.history.show_diff,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: document_page
#: field:document.page.create.menu,write_date:0
#: field:document.page.history,write_date:0
#: field:wizard.document.page.history.show_diff,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "Menu Information"
msgstr "Información del menú"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: document_page
#: field:document.page,message_ids:0
msgid "Messages"
msgstr "Mensajes"
#. module: document_page
#: help:document.page,message_ids:0
msgid "Messages and communication history"
msgstr "Mensajes e historial de comunicación"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificado por"
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
#: view:document.page:document_page.view_wiki_menu_form
msgid "Name"
msgstr "Nombre"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Página"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Historial de página"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Historial de página"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipo de página"
#. module: document_page #. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page #: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_page
@ -156,14 +282,9 @@ msgid "Pages"
msgstr "Páginas" msgstr "Páginas"
#. module: document_page #. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category #: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Categories" msgid "Pages history"
msgstr "Categorías" msgstr "Historial de páginas"
#. module: document_page
#: view:document.page:0
msgid "Name"
msgstr "Nombre"
#. module: document_page #. module: document_page
#: field:document.page.create.menu,menu_parent_id:0 #: field:document.page.create.menu,menu_parent_id:0
@ -171,109 +292,60 @@ msgid "Parent Menu"
msgstr "Menú padre" msgstr "Menú padre"
#. module: document_page #. module: document_page
#: field:document.page,write_date:0 #: field:document.page,message_summary:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Historial de página"
#. module: document_page
#: field:document.page.history,summary:0 #: field:document.page.history,summary:0
msgid "Summary" msgid "Summary"
msgstr "Resumen" msgstr "Resumen"
#. module: document_page #. module: document_page
#: view:document.page:0 #: view:document.page:document_page.view_category_form
msgid "Template"
msgstr "Plantilla"
#. module: document_page
#: view:document.page:document_page.view_category_form
msgid "Template that will be used as a content template for all new page of this category."
msgstr "Plantilla que se utilizará como una plantilla de contenido para todas las nuevas páginas de esta categoría."
#. module: document_page
#: code:addons/document_page/document_page.py:175
#, python-format
msgid "There are no changes in revisions."
msgstr "No hay cambios en las revisiones."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Título"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tipo"
#. module: document_page
#: field:document.page,message_unread:0
msgid "Unread Messages"
msgstr "Mensajes no leídos"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!"
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
msgid "e.g. Once upon a time..." msgid "e.g. Once upon a time..."
msgstr "Por ejemplo, Érase una vez..." msgstr "Por ejemplo, Érase una vez..."
#. module: document_page #. module: document_page
#: view:document.page.history:0 #: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "Document History" msgid "or"
msgstr "Historial del Documento" msgstr "o"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Página"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Historial"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid ""
"<p class=\"oe_view_nocontent_create\">\n"
" Click to create a new web page.\n"
" </p>\n"
" "
msgstr ""
"<p class=\"oe_view_nocontent_create\">\n"
"Pulse para crear una nueva página web.\n"
"</p>\n"
" "
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Crear menú"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Contenido mostrado"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "¡Advertencia!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Dif."
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Tipo de documento"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Hijos"
#~ msgid "Create web pages"
#~ msgstr "Crear páginas Web"

View File

@ -1,520 +1,351 @@
# Translation of OpenERP Server. # Translation of Odoo Server.
# This file contains the translation of the following modules: # This file contains the translation of the following modules:
# * wiki # * document_page
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n" "Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n" "POT-Creation-Date: 2015-07-27 20:33+0000\n"
"PO-Revision-Date: 2012-02-20 01:10+0000\n" "PO-Revision-Date: 2015-07-27 20:33+0000\n"
"Last-Translator: Freddy Gonzalez <freddy.gonzalez@clearcorp.co.cr>\n" "Last-Translator: Glen Sojo <glen.sojo@clearcorp.co.cr>\n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: \n"
"X-Launchpad-Export-Date: 2012-02-21 05:55+0000\n" "Plural-Forms: \n"
"X-Generator: Launchpad (build 14838)\n"
"Language: \n"
#. module: wiki #. module: document_page
#: field:wiki.groups,template:0 #: model:ir.actions.act_window,help:document_page.action_page
msgid "Wiki Template" msgid "<p class=\"oe_view_nocontent_create\">\n"
msgstr "Plantilla Wiki" " Click to create a new web page.\n"
" </p>\n"
" "
msgstr "<p class=\"oe_view_nocontent_create\">\n"
"Pulse para crear una nueva página web.\n"
"</p>\n"
" "
#. module: wiki #. module: document_page
#: model:ir.actions.act_window,name:wiki.action_wiki #: view:document.page:document_page.view_wiki_filter
#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki #: field:document.page,create_uid:0
msgid "Wiki Pages"
msgstr "Páginas Wiki"
#. module: wiki
#: field:wiki.groups,method:0
msgid "Display Method"
msgstr "Método de visualización"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0
msgid "Author" msgid "Author"
msgstr "Autor" msgstr "Autor"
#. module: wiki #. module: document_page
#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open #: view:document.page.create.menu:document_page.view_wiki_create_menu
#: view:wiki.wiki.page.open:0
msgid "Open Page"
msgstr "Abrir página"
#. module: wiki
#: field:wiki.groups,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: wiki
#: field:wiki.wiki,section:0
msgid "Section"
msgstr "Sección"
#. module: wiki
#: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not"
msgstr "Indica si estas páginas tienen una tabla de contenidos o no."
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
msgid "Wiki History"
msgstr "Historial Wiki"
#. module: wiki
#: field:wiki.wiki,minor_edit:0
msgid "Minor edit"
msgstr "Edición menor"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,text_area:0
msgid "Content"
msgstr "Contenido"
#. module: wiki
#: field:wiki.wiki,child_ids:0
msgid "Child Pages"
msgstr "Páginas hijas"
#. module: wiki
#: field:wiki.wiki,parent_id:0
msgid "Parent Page"
msgstr "Página padre"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor"
msgstr "Último colaborador"
#. module: wiki
#: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú padre"
#. module: wiki
#: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "There is no section in this Page"
msgstr "No hay sección en esta página"
#. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
msgid "Wiki Group"
msgstr "Grupo Wiki"
#. module: wiki
#: field:wiki.wiki,name:0
msgid "Title"
msgstr "Título"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#. module: wiki
#: field:wiki.wiki,history_id:0
msgid "History Lines"
msgstr "Líneas historial"
#. module: wiki
#: view:wiki.wiki:0
msgid "Page Content"
msgstr "Contenido página"
#. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "Warning !"
msgstr "¡Aviso!"
#. module: wiki
#: code:addons/wiki/wiki.py:237
#, python-format
msgid "There are no changes in revisions"
msgstr "No hay cambios en revisiones"
#. module: wiki
#: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1"
msgstr "Utilice código de sección de la página, por ejemplo 1.2.1"
#. module: wiki
#: field:wiki.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: wiki
#: field:wiki.groups,notes:0
msgid "Description"
msgstr "Descripción"
#. module: wiki
#: field:wiki.wiki,review:0
msgid "Needs Review"
msgstr "Necesita revisión"
#. module: wiki
#: help:wiki.wiki,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
"Indica que esta página debería ser revisada, captando la atención de otros "
"colaboradores."
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0
msgid "Menu Information"
msgstr "Información del menú"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History"
msgstr "Historial página"
#. module: wiki
#: selection:wiki.groups,method:0
msgid "Tree"
msgstr "Árbol"
#. module: wiki
#: view:wiki.groups:0
msgid "Page Template"
msgstr "Plantilla de página"
#. module: wiki
#: field:wiki.wiki,tags:0
msgid "Keywords"
msgstr "Palabras clave"
#. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki
msgid ""
"With Wiki Pages you can share ideas and questions with your coworkers. You "
"can create a new document that can be linked to one or several applications "
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format."
msgstr ""
"Con páginas wiki puede compartir ideas y preguntas con sus compañeros de "
"trabajo. Puede crear un nuevo documento que puede ser relacionado con una o "
"varias aplicaciones (CRM, Ventas, etc.). Puede utilizar palabras clave para "
"facilitar el acceso a sus páginas wiki. Existe un editor básico para el "
"formato texto del wiki."
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "Warning"
msgstr "Advertencia"
#. module: wiki
#: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
"Es obligado seleccionar la página de inicio si el método de visualización es "
"Página inicial."
#. module: wiki
#: field:wiki.wiki.history,create_date:0
msgid "Date"
msgstr "Fecha"
#. module: wiki
#: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? "
msgstr "¿Desea crear un índice sobre las páginas seleccionadas? "
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0
msgid "Difference"
msgstr "Diferencia"
#. module: wiki
#: field:wiki.groups,page_ids:0
msgid "Pages"
msgstr "Páginas"
#. module: wiki
#: view:wiki.groups:0
msgid "Group Description"
msgstr "Descripción grupo"
#. module: wiki
#: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? "
msgstr "¿Desea abrir una página wiki? "
#. module: wiki
#: field:wiki.groups,section:0
msgid "Make Section ?"
msgstr "¿Crear sección?"
#. module: wiki
#: field:wiki.wiki.history,text_area:0
msgid "Text area"
msgstr "Área de texto"
#. module: wiki
#: view:wiki.wiki:0
msgid "Meta Information"
msgstr "Meta información"
#. module: wiki
#: field:wiki.wiki,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: wiki
#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0
msgid "Notes"
msgstr "Notas"
#. module: wiki
#: selection:wiki.groups,method:0
msgid "List"
msgstr "Lista"
#. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
msgid "Summary"
msgstr "Resumen"
#. module: wiki
#: field:wiki.groups,create_date:0
msgid "Created Date"
msgstr "Fecha de creación"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history
msgid "All Page Histories"
msgstr "Todos los historiales de páginas"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki
msgid "wiki.wiki"
msgstr "wiki.wiki"
#. module: wiki
#: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr "Define el comportamiento por defecto del menú creado en este grupo."
#. module: wiki
#: view:wizard.wiki.history.show_diff:0
msgid "Close"
msgstr "Cerrar"
#. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
msgid "wizard.wiki.history.show_diff"
msgstr "asistente.wiki.historial.mostrar_dif"
#. module: wiki
#: field:wiki.wiki.history,wiki_id:0
msgid "Wiki Id"
msgstr "ID Wiki"
#. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page"
msgstr "Página inicial"
#. module: wiki
#: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr "Le permite enlazar con la otra página dentro del tema actual."
#. module: wiki
#: view:wiki.wiki:0
msgid "Modification Information"
msgstr "Información modificación"
#. module: wiki
#: help:wiki.wiki,group_id:0
msgid "Topic, also called Wiki Group"
msgstr "Tema, también denominado Grupo wiki."
#. module: wiki
#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0
msgid "Wiki"
msgstr "Wiki"
#. module: wiki
#: field:wiki.wiki,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: wiki
#: view:wiki.groups:0
msgid "Configuration"
msgstr "Configuración"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values
#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0
msgid "Create Index"
msgstr "Crear índice"
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!"
#. module: wiki
#: view:wiki.wiki:0
msgid "Group By..."
msgstr "Agrupar por..."
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0
msgid "Create Menu"
msgstr "Crear menú"
#. module: wiki
#: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?"
msgstr "¿Es ésta una edición mayor?"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups
#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse
#: model:ir.model,name:wiki.model_wiki_groups
#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0
msgid "Wiki Groups"
msgstr "Grupos Wiki"
#. module: wiki
#: view:wiki.wiki:0
msgid "Topic"
msgstr "Tema"
#. module: wiki
#: field:wiki.wiki.history,write_uid:0
msgid "Modify By"
msgstr "Modificado por"
#. module: wiki
#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981
#: field:wiki.wiki,toc:0
#, python-format
msgid "Table of Contents"
msgstr "Tabla de contenido"
#. module: wiki
#: view:wiki.groups:0 view:wiki.wiki.page.open:0
msgid "Open Wiki Page"
msgstr "Abrir página wiki"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr "asistente abrir página"
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#. module: wiki #. module: document_page
#: field:wizard.wiki.history.show_diff,file_path:0 #: view:document.page:document_page.view_category_tree
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorías"
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Categoría"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Hijos"
#. module: document_page
#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff
msgid "Close"
msgstr "Cerrar"
#. module: document_page
#: view:document.page:document_page.view_wiki_filter
#: view:document.page:document_page.view_wiki_form
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Contenido"
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Crear menú"
#. module: document_page
#: field:document.page.create.menu,create_uid:0
#: field:wizard.document.page.history.show_diff,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: document_page
#: field:document.page,create_date:0
#: field:document.page.create.menu,create_date:0
#: field:wizard.document.page.history.show_diff,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Fecha"
#. module: document_page
#: help:document.page,message_last_post:0
msgid "Date of the last message posted on the record."
msgstr "Fecha del último mensaje publicado en el registro."
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff" msgid "Diff"
msgstr "Dif." msgstr "Dif."
#. module: wiki #. module: document_page
#: view:wiki.wiki:0 #: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
msgid "Need Review" #: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
msgstr "Necesita revisión" #: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff
msgid "Difference"
msgstr "Diferencia"
#. module: wiki #. module: document_page
#: model:ir.actions.act_window,name:wiki.action_wiki_review #: view:document.page.history:document_page.view_wiki_history_tree
msgid "Pages Waiting Review" msgid "Document History"
msgstr "Páginas esperando revisión" msgstr "Historial del Documento"
#. module: wiki #. module: document_page
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open #: view:document.page:document_page.view_wiki_filter
msgid "Search Page" #: view:document.page:document_page.view_wiki_form
msgstr "Buscar página" #: view:document.page:document_page.view_wiki_menu_form
#: view:document.page:document_page.view_wiki_tree
#: view:document.page:document_page.view_wiki_tree_children
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#~ msgid "" #. module: document_page
#~ "The Object name must start with x_ and not contain any special character !" #: view:document.page.history:document_page.wiki_history_form
#~ msgstr "" #: model:ir.model,name:document_page.model_document_page_history
#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " msgid "Document Page History"
#~ "especial!" msgstr "Historia de página de documento"
#~ msgid "Wiki Groups Links" #. module: document_page
#~ msgstr "Enlaces grupos wiki" #: view:document.page:document_page.view_wiki_filter
msgid "Document Type"
msgstr "Tipo de documento"
#~ msgid "Child Groups" #. module: document_page
#~ msgstr "Grupos hijos" #: view:document.page:document_page.view_category_form
msgid "Documents"
msgstr "Documentos"
#~ msgid "Wiki Configuration" #. module: document_page
#~ msgstr "Configuración Wiki" #: field:document.page,message_follower_ids:0
msgid "Followers"
msgstr "Seguidores"
#~ msgid "Document Management - Wiki" #. module: document_page
#~ msgstr "Gestión de documentos - Wiki" #: view:document.page:document_page.view_wiki_filter
msgid "Group By..."
msgstr "Agrupar por..."
#~ msgid "Create a Menu" #. module: document_page
#~ msgstr "Crear un menú" #: field:document.page,history_ids:0
msgid "History"
msgstr "Historial"
#~ msgid "History Differance" #. module: document_page
#~ msgstr "Diferencia historial" #: help:document.page,message_summary:0
msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views."
msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban."
#~ msgid "Group Home Page" #. module: document_page
#~ msgstr "Página de inicio del grupo" #: field:document.page,id:0
#: field:document.page.create.menu,id:0
#: field:document.page.history,id:0
#: field:wizard.document.page.history.show_diff,id:0
msgid "ID"
msgstr "ID"
#~ msgid "Last Author" #. module: document_page
#~ msgstr "Último autor" #: help:document.page,message_unread:0
msgid "If checked new messages require your attention."
msgstr "Si está marcado nuevos mensajes requieren su atención."
#~ msgid "Differences" #. module: document_page
#~ msgstr "Diferencias" #: field:document.page,message_is_follower:0
msgid "Is a Follower"
msgstr "Es un seguidor"
#~ msgid "Document Management" #. module: document_page
#~ msgstr "Gestión de documentos" #: view:document.page:document_page.view_wiki_form
msgid "Last Content"
msgstr "Ultimo contenido"
#~ msgid "Invalid XML for View Architecture!" #. module: document_page
#~ msgstr "¡XML inválido para la definición de la vista!" #: view:document.page:document_page.view_wiki_filter
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Último colaborador"
#~ msgid "Parent Group" #. module: document_page
#~ msgstr "Grupo padre" #: field:document.page,message_last_post:0
msgid "Last Message Date"
msgstr "Fecha del ultimo mensaje"
#~ msgid "Wiki Differance" #. module: document_page
#~ msgstr "Diferencia Wiki" #: field:document.page.create.menu,write_uid:0
#: field:document.page.history,write_uid:0
#: field:wizard.document.page.history.show_diff,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: document_page
#: field:document.page.create.menu,write_date:0
#: field:document.page.history,write_date:0
#: field:wizard.document.page.history.show_diff,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "Menu Information"
msgstr "Información del menú"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: document_page
#: field:document.page,message_ids:0
msgid "Messages"
msgstr "Mensajes"
#. module: document_page
#: help:document.page,message_ids:0
msgid "Messages and communication history"
msgstr "Mensajes e historial de comunicación"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificado por"
#. module: document_page
#: view:document.page:document_page.view_category_form
#: view:document.page:document_page.view_wiki_form
#: view:document.page:document_page.view_wiki_menu_form
msgid "Name"
msgstr "Nombre"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Página"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Historial de página"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Historial de página"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipo de página"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Páginas"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Historial de páginas"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú padre"
#. module: document_page
#: field:document.page,message_summary:0
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Resumen"
#. module: document_page
#: view:document.page:document_page.view_category_form
msgid "Template"
msgstr "Plantilla"
#. module: document_page
#: view:document.page:document_page.view_category_form
msgid "Template that will be used as a content template for all new page of this category."
msgstr "Plantilla que se utilizará como una plantilla de contenido para todas las nuevas páginas de esta categoría."
#. module: document_page
#: code:addons/document_page/document_page.py:175
#, python-format #, python-format
#~ msgid "No action found" msgid "There are no changes in revisions."
#~ msgstr "No se ha encontrado la acción" msgstr "No hay cambios en las revisiones."
#~ msgid "Modifications" #. module: document_page
#~ msgstr "Modificaciones" #: field:document.page,name:0
msgid "Title"
msgstr "Título"
#~ msgid "History" #. module: document_page
#~ msgstr "Historial" #: field:document.page,type:0
msgid "Type"
msgstr "Tipo"
#~ msgid "Tags" #. module: document_page
#~ msgstr "Etiquetas" #: field:document.page,message_unread:0
msgid "Unread Messages"
msgstr "Mensajes no leídos"
#~ msgid "Invalid model name in the action definition." #. module: document_page
#~ msgstr "Nombre de modelo no válido en la definición de acción." #: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#~ msgid "" #. module: document_page
#~ "\n" #: code:addons/document_page/wizard/document_page_show_diff.py:50
#~ "The base module to manage documents(wiki)\n" #, python-format
#~ "\n" msgid "You need to select minimum one or maximum two history revisions!"
#~ "keep track for the wiki groups, pages, and history\n" msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!"
#~ " "
#~ msgstr "" #. module: document_page
#~ "\n" #: view:document.page:document_page.view_category_form
#~ "El módulo base para gestionar documentos (wiki)\n" #: view:document.page:document_page.view_wiki_form
#~ "\n" msgid "e.g. Once upon a time..."
#~ "gestione los grupos, páginas e historial del wiki\n" msgstr "Por ejemplo, Érase una vez..."
#~ " "
#. module: document_page
#: view:document.page.create.menu:document_page.view_wiki_create_menu
msgid "or"
msgstr "o"

View File

@ -51,16 +51,19 @@ class document_page_create_menu(models.TransientModel):
obj_page = self.env['document.page'] obj_page = self.env['document.page']
obj_menu = self.env['ir.ui.menu'] obj_menu = self.env['ir.ui.menu']
obj_action = self.env['ir.actions.act_window'] obj_action = self.env['ir.actions.act_window']
obj_model_data = self.env['ir.model.data']
page_id = self.env.context.get('active_id', False) page_id = self.env.context.get('active_id', False)
page = obj_page.browse(page_id) page = obj_page.browse(page_id)
data = self[0] data = self[0]
view_id = obj_model_data.sudo().get_object_reference(
'document_page', 'view_wiki_menu_form')[1]
value = { value = {
'name': 'Document Page', 'name': 'Document Page',
'view_type': 'form', 'view_type': 'form',
'view_mode': 'form,tree', 'view_mode': 'form,tree',
'res_model': 'document.page', 'res_model': 'document.page',
'view_id': False, 'view_id': view_id,
'type': 'ir.actions.act_window', 'type': 'ir.actions.act_window',
'target': 'inlineview', 'target': 'inlineview',
} }