[REM] correctly rename and remove wiki

bzr revid: al@openerp.com-20120803154641-ocbydlqt7ppjecwn
This commit is contained in:
Antony Lesuisse 2012-08-03 17:46:41 +02:00
parent 96c7c90cdd
commit 788b1bdb5b
221 changed files with 1703 additions and 6521 deletions

View File

@ -19,7 +19,7 @@
# #
############################################################################## ##############################################################################
import wiki import document_page
import wizard import wizard
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -20,38 +20,44 @@
############################################################################## ##############################################################################
{ {
'name': 'Wiki', 'name': 'Document Page',
'version': '1.0.1', 'version': '1.0.1',
'category': 'Knowledge Management', 'category': 'Knowledge Management',
'description': """ 'description': """
The base module to manage documents(wiki). The base module to manage documents(document_page).
========================================== ==========================================
Keep track of Wiki groups, pages, and history. Keep track of Wiki groups, pages, and history.
""", """,
'author': ['OpenERP SA', 'Axelor'], 'author': ['OpenERP SA', 'Axelor'],
'website': 'http://openerp.com', 'website': 'http://openerp.com',
'depends': ['knowledge'], 'depends': ['knowledge','document','crm'],
'web_depends': ['widget_wiki'], 'web_depends': ['widget_document_page'],
'init_xml': [], 'init_xml': [],
'update_xml': [ 'update_xml': [
'wizard/wiki_wiki_page_open_view.xml', 'data/document_page_sale_faq_data.xml',
'wizard/wiki_create_menu_view.xml', 'wizard/document_page_page_open_view.xml',
'wizard/wiki_make_index_view.xml', 'wizard/document_page_create_menu_view.xml',
'wizard/wiki_show_diff_view.xml', 'wizard/document_page_show_diff_view.xml',
'wiki_view.xml', 'wizard/document_page_make_index_view.xml',
'data/wiki_quickstart.xml', 'document_page_view.xml',
'data/wiki_main.xml', 'document_page_sequence.xml',
'security/wiki_security.xml', 'document_page_sale_faq_view.xml',
'data/document_page_quickstart.xml',
'data/document_page_main.xml',
'security/document_page_security.xml',
'security/ir.model.access.csv' 'security/ir.model.access.csv'
], ],
'demo_xml': ['wiki_demo.xml'],
'test': ['test/wiki_test00.yml'], 'demo_xml': ['document_page_demo.xml'],
'test': ['test/document_page_test00.yml'],
'installable': True, 'installable': True,
'auto_install': False, 'auto_install': False,
'certificate': '0086363630317', 'certificate': '0086363630317',
'web': True, 'web': True,
'images': ['images/create_index.jpeg','images/page_history.jpeg','images/wiki_groups.jpeg','images/wiki_pages.jpeg'], 'images': ['images/create_index.jpeg','images/page_history.jpeg','images/document_page_groups.jpeg','images/document_page_pages.jpeg','document_page_type_internal_faq.jpeg','page_history.jpeg','sale_document.jpeg','wiki_pages.jpeg','wiki_pages_quality_manual.jpeg'],
'js': ['static/src/lib/wiky/wiky.js', 'static/src/js/wiki.js'], 'js': ['static/src/lib/wiky/wiky.js', 'static/src/js/document_page.js'],
'css' : [
"static/src/css/document_page.css"],
} }
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -25,29 +25,28 @@ from tools.translate import _
import difflib import difflib
import tools import tools
class wiki_wiki(osv.osv): class document_page(osv.osv):
""" wiki """ """ document.page """
_name = "wiki.wiki" _name = "document.page"
wiki_wiki() document_page()
class wiki_group(osv.osv): class document_page_type(osv.osv):
""" Wiki Groups """ """ document page type """
_name = "wiki.groups" _name = "document.page.type"
_description = "Wiki Groups" _description = "Document page type"
_order = 'name' _order = 'name'
_columns = { _columns = {
'name':fields.char('Wiki Group', size=256, select=True, required=True), 'name':fields.char('Document Page Type', size=256, select=True, required=True),
'page_ids':fields.one2many('wiki.wiki', 'group_id', 'Pages'), 'page_ids':fields.one2many('document.page', 'parent_id', 'Pages'),
'notes':fields.text("Description"), 'notes':fields.text("Description"),
'create_date':fields.datetime("Created Date", select=True), 'create_date':fields.datetime("Created Date", select=True),
'template': fields.text('Wiki Template'), 'content_template': fields.text('Document Page Template'),
'section': fields.boolean("Make Section ?"),
'method':fields.selection([('list', 'List'), ('page', 'Home Page'), \ 'method':fields.selection([('list', 'List'), ('page', 'Home Page'), \
('tree', 'Tree')], 'Display Method', help="Define the default behaviour of the menu created on this group"), ('tree', 'Tree')], 'Display Method', help="Define the default behaviour of the menu created on this group"),
'home':fields.many2one('wiki.wiki', 'Home Page', help="Required to select home page if display method is Home Page"), 'home':fields.many2one('document.page', 'Home Page', help="Required to select home page if display method is Home Page"),
'menu_id': fields.many2one('ir.ui.menu', "Menu", readonly=True), 'menu_id': fields.many2one('ir.ui.menu', "Menu", readonly=True),
} }
@ -55,13 +54,13 @@ class wiki_group(osv.osv):
'method': lambda *a: 'page', 'method': lambda *a: 'page',
} }
def open_wiki_page(self, cr, uid, ids, context=None): def open_document_page(self, cr, uid, ids, context=None):
""" Opens Wiki Page of Group """ Opens document Page of Group
@param cr: the current row, from the database cursor, @param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks, @param uid: the current users ID for security checks,
@param ids: List of open wiki groups IDs @param ids: List of open document groups IDs
@return: dictionay of open wiki window on give group id @return: dictionay of open Document window on give group id
""" """
if type(ids) in (int,long,): if type(ids) in (int,long,):
ids = [ids] ids = [ids]
@ -71,110 +70,112 @@ class wiki_group(osv.osv):
if not group_id: if not group_id:
return {} return {}
value = { value = {
'name': 'Wiki Page', 'name': 'Document Page',
'view_type': 'form', 'view_type': 'form',
'view_mode': 'form,tree', 'view_mode': 'form,tree',
'res_model': 'wiki.wiki', 'res_model': 'document.page',
'view_id': False, 'view_id': False,
'type': 'ir.actions.act_window', 'type': 'ir.actions.act_window',
'nodestroy': True, 'nodestroy': True,
} }
group = self.browse(cr, uid, group_id, context=context) group = self.browse(cr, uid, group_id, context=context)
value['domain'] = "[('group_id','=',%d)]" % (group.id) value['domain'] = "[('parent_id','=',%d)]" % (group.id)
if group.method == 'page': if group.method == 'page':
value['res_id'] = group.home.id value['res_id'] = group.home.id
elif group.method == 'list': elif group.method == 'list':
value['view_type'] = 'form' value['view_type'] = 'form'
value['view_mode'] = 'tree,form' value['view_mode'] = 'tree,form'
elif group.method == 'tree': elif group.method == 'tree':
view_id = self.pool.get('ir.ui.view').search(cr, uid, [('name', '=', 'wiki.wiki.tree.children')]) view_id = self.pool.get('ir.ui.view').search(cr, uid, [('name', '=', 'document.page.tree.children')])
value['view_id'] = view_id value['view_id'] = view_id
value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', False)] value['domain'] = [('parent_id', '=', group.id)]
value['view_type'] = 'tree' value['view_type'] = 'tree'
value['view_mode'] = 'tree'
return value return value
wiki_group() document_page_type()
class wiki_wiki2(osv.osv): class document_page2(osv.osv):
""" Wiki Page """ """ Document Page """
_inherit = "wiki.wiki"
_description = "Wiki Page"
_order = 'section,create_date desc'
_inherit = "document.page"
_description = "Document Page"
_order = 'create_date desc'
_columns = { _columns = {
'name': fields.char('Title', size=256, select=True, required=True), 'name': fields.char('Title', size=256, select=True, required=True),
'write_uid': fields.many2one('res.users', "Last Contributor", select=True), 'write_uid': fields.many2one('res.users', "Last Contributor", select=True),
'text_area': fields.text("Content"), 'content': fields.text("Content"),
'index': fields.char('Index', size=256),
'create_uid': fields.many2one('res.users', 'Author', select=True, readonly=True), 'create_uid': fields.many2one('res.users', 'Author', select=True, readonly=True),
'create_date': fields.datetime("Created on", select=True, readonly=True), 'create_date': fields.datetime("Created on", select=True, readonly=True),
'content_template': fields.text('Document Template'),
'write_date': fields.datetime("Modification Date", select=True, readonly=True), 'write_date': fields.datetime("Modification Date", select=True, readonly=True),
'tags': fields.char('Keywords', size=1024, select=True), 'tags': fields.char('Keywords', size=1024, select=True),
'history_id': fields.one2many('wiki.wiki.history', 'wiki_id', 'History Lines'), 'history_ids': fields.one2many('document.page.history', 'document_id', 'History Lines'),
'minor_edit': fields.boolean('Minor edit', select=True), 'minor_edit': fields.boolean('Minor edit', select=True),
'summary': fields.char('Summary', size=256), 'edit_summary': fields.char('Summary', size=256),
'section': fields.char('Section', size=32, help="Use page section code like 1.2.1", select=True), 'type':fields.selection([('normal','Content Page'), ('index','Index Page')], 'Type', help="Define the type of the document"),
'group_id': fields.many2one('wiki.groups', 'Wiki Group', select=1, ondelete='set null',
help="Topic, also called Wiki Group"),
'toc': fields.boolean('Table of Contents',
help="Indicates that this pages have a table of contents or not"),
'review': fields.boolean('Needs Review', select=True, 'review': fields.boolean('Needs Review', select=True,
help="Indicates that this page should be reviewed, raising the attention of other contributors"), help="Indicates that this page should be reviewed, raising the attention of other contributors"),
'parent_id': fields.many2one('wiki.wiki', 'Parent Page', help="Allows you to link with the other page with in the current topic"), 'parent_id': fields.many2one('document.page.type', 'Parent Page', select=1 , ondelete='set null', help="Allows you to link with the topic"),
'child_ids': fields.one2many('wiki.wiki', 'parent_id', 'Child Pages'), 'child_ids': fields.one2many('document.page', 'parent_id', 'Child Pages'),
} }
_defaults = { _defaults = {
'toc': True, 'type':'normal',
'review': True, 'review': True,
'minor_edit': True, 'minor_edit': True,
'index' : 1,
} }
def onchange_group_id(self, cr, uid, ids, group_id, content, context=None):
def onchange_parent_id(self, cr, uid, ids, parent_id, content, context=None):
""" @param cr: the current row, from the database cursor, """ @param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks, @param uid: the current users ID for security checks,
@param ids: List of wiki pages IDs @param ids: List of document pages IDs
@return: dictionay of open wiki page on give page section """ @return: dictionay of open document page on give page section """
if (not group_id) or content: if (not parent_id) or content:
return {} return {}
grp = self.pool.get('wiki.groups').browse(cr, uid, group_id, context=context) grp = self.pool.get('document.page.type').browse(cr, uid, parent_id, context=context)
section = '0' template = grp.content_template
for page in grp.page_ids:
if page.section: section = page.section
s = section.split('.')
template = grp.template
try: try:
s[-1] = str(int(s[-1])+1) s[-1] = str(int(s[-1])+1)
except: except:
pass pass
section = '.'.join(s)
return { return {
'value':{ 'value':{
'text_area': template, 'content': template,
'section': section
} }
} }
def onchange_content(self, cr, uid, ids, content, context=None):
if content:
return {'value':{'summary': content}}
return {}
def copy_data(self, cr, uid, id, default=None, context=None): def copy_data(self, cr, uid, id, default=None, context=None):
""" @param cr: the current row, from the database cursor, """ @param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks, @param uid: the current users ID for security checks,
@param id: Give wiki page's ID """ @param id: Give document page's ID """
return super(wiki_wiki2, self).copy_data(cr, uid, id, {'wiki_id': False}, context) return super(document_page2, self).copy_data(cr, uid, id, {'document_id': False}, context)
def create_history(self, cr, uid, ids, vals, context=None): def create_history(self, cr, uid, ids, vals, context=None):
history_id = False history_id = False
history = self.pool.get('wiki.wiki.history') history = self.pool.get('document.page.history')
if vals.get('text_area'): if vals.get('content'):
res = { res = {
'minor_edit': vals.get('minor_edit', True), 'minor_edit': vals.get('minor_edit', True),
'text_area': vals.get('text_area', ''), 'content': vals.get('content', ''),
'write_uid': uid, 'write_uid': uid,
'wiki_id': ids[0], 'document_id': ids[0],
'summary':vals.get('summary', '') 'summary':vals.get('edit_summary', '')
} }
history_id = history.create(cr, uid, res) history_id = history.create(cr, uid, res)
return history_id return history_id
@ -183,37 +184,37 @@ class wiki_wiki2(osv.osv):
""" @param cr: the current row, from the database cursor, """ @param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks, """ @param uid: the current users ID for security checks, """
wiki_id = super(wiki_wiki2, self).create(cr, uid, document_id = super(document_page2, self).create(cr, uid,
vals, context) vals, context)
self.create_history(cr, uid, [wiki_id], vals, context) self.create_history(cr, uid, [document_id], vals, context)
return wiki_id return document_id
def write(self, cr, uid, ids, vals, context=None): def write(self, cr, uid, ids, vals, context=None):
""" @param cr: the current row, from the database cursor, """ @param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks, """ @param uid: the current users ID for security checks, """
result = super(wiki_wiki2, self).write(cr, uid, ids, vals, context) result = super(document_page2, self).write(cr, uid, ids, vals, context)
self.create_history(cr, uid, ids, vals, context) self.create_history(cr, uid, ids, vals, context)
return result return result
wiki_wiki2() document_page2()
class wiki_history(osv.osv): class document_page_history(osv.osv):
""" Wiki History """ """ Document Page History """
_name = "wiki.wiki.history" _name = "document.page.history"
_description = "Wiki History" _description = "Document Page History"
_rec_name = "summary" _rec_name = "summary"
_order = 'id DESC' _order = 'id DESC'
_columns = { _columns = {
'create_date': fields.datetime("Date", select=True), 'create_date': fields.datetime("Date", select=True),
'text_area': fields.text("Text area"), 'content': fields.text("Content"),
'minor_edit': fields.boolean('This is a major edit ?', select=True), 'minor_edit': fields.boolean('This is a major edit ?', select=True),
'summary': fields.char('Summary', size=256, select=True), 'summary': fields.char('Summary', size=256, select=True),
'write_uid': fields.many2one('res.users', "Modify By", select=True), 'write_uid': fields.many2one('res.users', "Modify By", select=True),
'wiki_id': fields.many2one('wiki.wiki', 'Wiki Id', select=True) 'document_id': fields.many2one('document.page', 'Document Page', select=True)
} }
_defaults = { _defaults = {
@ -225,9 +226,9 @@ class wiki_history(osv.osv):
""" @param cr: the current row, from the database cursor, """ @param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks, """ @param uid: the current users ID for security checks, """
history_pool = self.pool.get('wiki.wiki.history') history_pool = self.pool.get('document.page.history')
text1 = history_pool.read(cr, uid, [v1], ['text_area'])[0]['text_area'] text1 = history_pool.read(cr, uid, [v1], ['content'])[0]['content']
text2 = history_pool.read(cr, uid, [v2], ['text_area'])[0]['text_area'] text2 = history_pool.read(cr, uid, [v2], ['content'])[0]['content']
line1 = line2 = '' line1 = line2 = ''
if text1: if text1:
line1 = tools.ustr(text1.splitlines(1)) line1 = tools.ustr(text1.splitlines(1))
@ -238,6 +239,6 @@ class wiki_history(osv.osv):
diff = difflib.HtmlDiff() diff = difflib.HtmlDiff()
return diff.make_file(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=False) return diff.make_file(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=False)
wiki_history() document_page_history()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<record id="wiki_wiki_main" model="document.page">
<field name="name">The OpenERP wiki</field>
<field name="tags">help, quick start, wiki, formatting</field>
<field name="minor_edit">0</field>
<field name="index">1</field>
<field name="summary">Initial Page</field>
<field name="content">==The OpenERP wiki==
[[File:http://www.openerp.com/sites/all/themes/openerp/logo.png OpenERP]]
The OpenERP wiki allows you to manage your enterprise's contents using wiki
restructured texts. This module provides a collaborative way to manage internal
FAQs, quality manuals, technical references, etc.
==Keypoints==
* Same formating style than MediaWiki,
* Any number of wiki group for different purposes,
* Detailed history on all pages,
* Integrated with the document management system.
==Why you should use the OpenERP integrated wiki than a separate wiki system ?==
* Allows links to any document of the system,
* Uses the access controls of OpenERP for uniq access rights management,
* Use it to describe projects, tasks, products,
* Integrated with customer portal to provide restricted external accesses,
* Linked to users processes for quality manuals.
==To get more information==
* [[Basic Wiki Editing]]
* [[Wiki Documentation]]
* [http://openerp.com The OpenERP website]
</field>
<field name="parent_id" ref="wiki_groups_wikiformatting0"/>
</record>
</data>
</openerp>

View File

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<record id="base.user_demo" model="res.users">
<field eval="[(4, ref('base.group_sale_salesman')),(4, ref('base.group_document_user'))]" name="groups_id"/>
</record>
<record id="document_google_docs" model="document.page">
<field name="name">OpenERP 6.1. Functional Demo</field>
<field name="minor_edit">0</field>
<field name="index">6</field>
<field name="summary">Initial Page</field>
<field name="content">==OpenERP 6.1. Functional Demo==
The news is out, OpenERP's latest version 6.1. is here.
It's more user-friendly, even more business oriented and efficient to manage your company
How to discover the latest version 6.1.?
Demo : [http://demo.openerp.com]
Online: [http://openerp.com/online]
Download: [http://openerp.com/downloads]
We have also put together a functional demo that presents 6.1. Watch this video to learn directly from us what OpenERP 6.1. can do for you. Share it in your company, with your clients and implement it now for your business.
==Watch on Youtube!==
[[Video:http://www.youtube.com/embed/7jES2jxKMso ]]
</field>
</record>
<record id="document_dashboards" model="document.page">
<field name="name">Personalise Dashboards</field>
<field name="minor_edit">0</field>
<field name="index">7</field>
<field name="summary">Initial Page</field>
<field name="content">==Personalise your OpenERP dashboards==
You like OpenERP, but feel like you want to personalise it more? Now, OpenERP goes a step further and lets you customize your dashboard.
How? you will ask. Thanks to a new feature that allows you to customize your dashboard by adding new boards of any search view.
Let's say you are not a big fan of the default dashboard and you feel like the view provided are not the most relevant to you. So, now you can remove the board you find useless and customize your own one.
==How is it done?==
Step 1: access one search view
Step 2: apply the filter you want to see at each connection to the application (eg. on sales, manufacturing, etc)
Step 3: add it into the dashboard in the same space where you can save the filter
Step 4: choose the application you want it visible on and the name of the array
Look at this simple example below from Purchase, where I want to put on the application's dashboard "Purchases to Approve". After I access the search view and apply the filter for "Purchases to Approve", I can add it immediately to my Purchase dashboard.
[[File:http://www.openerp.com/sites/default/files/fileattach/dashboard2_1(1).png ]]
In less than a minute, the search view is visible on the dashboard
[[File:http://www.openerp.com/sites/default/files/fileattach/dashboard2_2.png ]]
Of course, you are free to delete what you don't need or like, but just in case you change your mind there is a reset button to return to the default view.
</field>
</record>
<record id="document_pos" model="document.page">
<field name="name">Touchscreen Point of Sale</field>
<field name="minor_edit">0</field>
<field name="index">8</field>
<field name="summary">Initial Page</field>
<field name="content">==The new OpenERP touchscreen Point of Sale==
The brand new OpenERP touchscreen point of sale available with 6.1 allows you to manage your shop sales very easily.
It's fully web based so that you don't have to install or deploy any software and all the sales shops can be easily consolidated.
It works in connected and disconnected modes so that you can continue to sell if you lose your internet connection.
[[File:http://www.openerp.com/sites/default/files/fileattach/POS(2).png ]]
==Here's a summary of its main features and benefits:==
100% WEB based
available for any touchscreen device (ipod, ipad, any tablet)mobile (with portable devices)
no installation required
Packed as a standard OpenERP module
no synchronization needed, completely integrated
all OpenERP available, use OpenERP for backend consolidate shops almost in real time
Work offline, with no server connection
continue working even when your connection is down
if you close your browser, data won't be lost
fully web based with a clean interface smart interface
You have different options to select your products. You can do it through the barcode reader, just browse through the categories you have put in place (ie. drinks, snacks, meals, etc.), or text search in case neither of the other options work for you.
If you need to use the POS for your restaurant, for example, your employees can record at the same time multiple tickets without having to wait to do one transaction at a time. Along, to facilitate payment, the application allows multiple payment methods.
The POS application is so simple and accessible to use that your shop or restaurant will never need any other tool to manage orders. Due to its smart and user-friendly interface you don't need any training to learn how to use it. Think of it as an out-of-the-box solution to boost your business' productivity.
</field>
</record>
</data>
</openerp>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="seq_type_doc_page" model="ir.sequence.type">
<field name="name">Document Page</field>
<field name="code">document.page</field>
</record>
<record id="seq_doc_page" model="ir.sequence">
<field name="name">Document Page sequence</field>
<field name="code">document.page</field>
<field name="number_next">1</field>
<field name="number_increment">1</field>
</record>
</data>
</openerp>

View File

@ -1,27 +1,24 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<openerp> <openerp>
<data> <data>
<menuitem name="Knowledge" icon="terp-stock"
id="knowledge.menu_document" sequence="19" />
<!-- Top menu item --> <menuitem name="Configuration"
<menuitem name="Knowledge" id="knowledge.menu_document_configuration"
id="knowledge.menu_document" parent="knowledge.menu_document" sequence="50"/>
sequence="130"/>
<menuitem name="Configuration" <menuitem name="Document Page" id="menu_wiki_configuration"
id="knowledge.menu_document_configuration" parent="knowledge.menu_document_configuration" sequence="2" />
parent="knowledge.menu_document" sequence="50"/>
<menuitem name="Wiki" id="menu_wiki_configuration"
parent="knowledge.menu_document_configuration" sequence="2"/>
<!-- Wiki Groups Tree view --> <!-- Wiki Groups Tree view -->
<record model="ir.ui.view" id="wiki_group_tree"> <record model="ir.ui.view" id="wiki_group_tree">
<field name="name">wiki.groups.tree</field> <field name="name">document.page.type.tree</field>
<field name="model">wiki.groups</field> <field name="model">document.page.type</field>
<field name="type">tree</field> <field name="type">tree</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<tree string="Wiki Groups"> <tree string="Document type">
<field name="name"/> <field name="name"/>
</tree> </tree>
</field> </field>
@ -29,76 +26,77 @@
<!-- Wiki Groups Form view --> <!-- Wiki Groups Form view -->
<record model="ir.ui.view" id="wiki_group_form"> <record model="ir.ui.view" id="wiki_group_form">
<field name="name">wiki.groups.form</field> <field name="name">document_page_type.form</field>
<field name="model">wiki.groups</field> <field name="model">document.page.type</field>
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Wiki Groups" version="7.0"> <form string="Document Type" version="7.0">
<sheet string="Document Page Type">
<div class="oe_right oe_button_box">
<button
name="%(document_page.action_wiki_create_menu)d"
string="Create Menu"
type="action"
attrs="{'invisible':[('menu_id','!=',False)]}"/>
<button
name="open_document_page"
string="Open Document Page"
type="object"/>
</div>
<group col="4" colspan="3" > <group col="4" colspan="3" >
<field name="name"/> <field name="name"/>
<field name="create_date" readonly="2"/> <field name="create_date" readonly="2"/>
</group> </group>
<group col="2" colspan="1"> <group col="2" colspan="1">
<field name="method"/> <field name="method"/>
<field name="home" domain="[('group_id','=',active_id)]" <field name="home" domain="[('parent_id','=',active_id)]"
attrs="{'required':[('method','=','page')], 'readonly':[('method','!=','page')]}"/> attrs="{'required':[('method','=','page')], 'readonly':[('method','!=','page')]}" />
</group> </group>
<notebook colspan="4"> <notebook colspan="4">
<page string="Notes"> <page string="Notes">
<separator string="Group Description" colspan="4"/>
<field name="notes" colspan="4" nolabel="1"/> <field name="notes" colspan="4" nolabel="1"/>
</page> </page>
<page string="Configuration"> <page string="Configuration">
<separator string="Page Template" colspan="4"/> <separator string="Page Template" colspan="4"/>
<field name="template" colspan="4" nolabel="1" widget="text_wiki"/> <field name="content_template" colspan="4" nolabel="1" widget="text_wiki"/>
</page> </page>
</notebook> </notebook>
<field name="menu_id"/> <field name="menu_id"/>
<button </sheet>
name="%(wiki.action_wiki_create_menu)d"
string="Create Menu"
type="action"
icon="gtk-justify-fill"
attrs="{'invisible':[('menu_id','!=',False)]}"/>
<button
name="open_wiki_page"
string="Open Wiki Page"
type="object"
icon="gtk-ok"/>
</form> </form>
</field> </field>
</record> </record>
<!-- Wiki Groups Action --> <!-- Wiki Groups Action -->
<record model="ir.actions.act_window" id="action_wiki_groups"> <record model="ir.actions.act_window" id="action_wiki_groups">
<field name="name">Wiki Groups</field> <field name="name">Document Type</field>
<field name="res_model">wiki.groups</field> <field name="res_model">document.page.type</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>
</record> </record>
<menuitem name="Wiki Groups" <menuitem name="Types"
parent="menu_wiki_configuration" parent="menu_wiki_configuration"
id="menu_action_wiki_groups" id="menu_action_wiki_groups"
action="action_wiki_groups"/> action="action_wiki_groups"/>
<record model="ir.actions.act_window" id="action_wiki_groups_browse"> <record model="ir.actions.act_window" id="action_wiki_groups_browse">
<field name="name">Wiki Groups</field> <field name="name">Document Type</field>
<field name="res_model">wiki.groups</field> <field name="res_model">document.page.type</field>
<field name="view_type">tree</field> <field name="view_type">tree</field>
</record> </record>
<!-- wiki Tree view For child --> <!-- wiki Tree view For child -->
<record id="view_wiki_tree_children" model="ir.ui.view"> <record id="view_wiki_tree_children" model="ir.ui.view">
<field name="name">wiki.wiki.tree.children</field> <field name="name">document.page.tree.children</field>
<field name="model">wiki.wiki</field> <field name="model">document.page</field>
<field name="type">tree</field> <field name="type">tree</field>
<field name="field_parent">child_ids</field> <field name="field_parent">child_ids</field>
<field name="priority">100</field> <field name="priority">100</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<tree string="Wiki"> <tree string="Document Page">
<field name="name"/> <field name="name"/>
<field name="section" invisible="not context.get('section',False)"/>
<field name="review"/> <field name="review"/>
<field name="write_uid"/> <field name="write_uid"/>
<field name="write_date"/> <field name="write_date"/>
@ -108,17 +106,16 @@
<!-- wiki Tree view --> <!-- wiki Tree view -->
<record model="ir.ui.view" id="view_wiki_tree"> <record model="ir.ui.view" id="view_wiki_tree">
<field name="name">wiki.wiki.tree</field> <field name="name">document.page.tree</field>
<field name="model">wiki.wiki</field> <field name="model">document.page</field>
<field name="type">tree</field> <field name="type">tree</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<tree string="Wiki"> <tree string="Document Page">
<field name="name"/> <field name="name"/>
<field name="group_id"/>
<field name="section" invisible="not context.get('section',False)"/>
<field name="review"/> <field name="review"/>
<field name="create_uid" invisible="context.get('create_uid',False)"/> <field name="create_uid" invisible="context.get('create_uid',False)"/>
<field name="write_uid"/> <field name="write_uid"/>
<field name="parent_id"/>
<field name="write_date" groups="base.group_no_one"/> <field name="write_date" groups="base.group_no_one"/>
</tree> </tree>
</field> </field>
@ -126,41 +123,48 @@
<!-- wiki Form view --> <!-- wiki Form view -->
<record model="ir.ui.view" id="view_wiki_form"> <record model="ir.ui.view" id="view_wiki_form">
<field name="name">wiki.wiki.form</field> <field name="name">document.page.form</field>
<field name="model">wiki.wiki</field> <field name="model">document.page</field>
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Wiki" version="7.0"> <form string="Document Page" version="7.0">
<sheet> <sheet string="Document Page">
<div class="oe_title"> <div class="oe_right oe_button_box">
<label for="name" class="oe_edit_only"/> <button
<h1><field name="name" select="1"/></h1> name="%(document_page.action_wiki_create_menu)d"
<label for="group_id" class="oe_edit_only"/> string="Create Menu"
<h2> type="action"
<field name="group_id" string="Topic" select="1" on_change="onchange_group_id(group_id, text_area)"/></h2> class="oe_edit_only"/>
</div> </div>
<group> <label for="name" class="oe_edit_only"/>
<group> <h1><field name="name" select="1" /></h1>
<field name="parent_id" domain="[('group_id','=',group_id)]"/> <label for="type" class="oe_edit_only"/>
<field name="section"/> <field name="type" class="oe_edit_only"/>
</group> <notebook colspan="4" >
</group>
<notebook colspan="4">
<page string="Content"> <page string="Content">
<field name="text_area" nolabel="1" colspan="4" widget="text_wiki" placeholder="Wiki Content"/> <field name="index" attrs="{'invisible':[('type','=','normal')]}" class="oe_edit_only"/>
<field name="content" nolabel="1" colspan="4" widget="text_wiki" placeholder="Wiki Content" attrs="{'invisible':[('type','=','index')]}"/>
<field name="content_template" attrs="{'invisible':[('type','!=','index')]}"/>
<label for="minor_edit" class="oe_edit_only"/>
<field name="minor_edit" class="oe_edit_only"/>
</page>
<page string="History" groups="base.group_no_one" >
<field name="history_ids" nolabel="1"/>
<separator colspan="4" string="Modification Information"/>
<label for="write_date" readonly="1"/>
<field name="write_date"/>
</page>
<page string="Configuration">
<label for="parent_id" />
<field name="parent_id" on_change="onchange_parent_id(parent_id,content)" string="Topic" />
<label for="review" />
<field name="review"/>
<separator colspan="4" string="Meta Information"/>
<label for="tags" />
<field name="tags"/>
</page> </page>
</notebook> </notebook>
<group col="2" colspan="2" groups="base.group_no_one">
<separator colspan="4" string="Modification Information"/>
<field name="write_date" readonly="1"/>
<field name="minor_edit"/>
<field name="review"/>
</group>
<group col="2" colspan="2">
<separator colspan="4" string="Meta Information"/>
<field name="tags" widget="many2many_tags"/>
<field name="toc" groups="base.group_no_one"/>
</group>
</sheet> </sheet>
</form> </form>
</field> </field>
@ -168,20 +172,24 @@
<!-- wiki Search view --> <!-- wiki Search view -->
<record id="view_wiki_filter" model="ir.ui.view"> <record id="view_wiki_filter" model="ir.ui.view">
<field name="name">wiki.wiki.search</field> <field name="name">document.page.search</field>
<field name="model">wiki.wiki</field> <field name="model">document.page</field>
<field name="type">search</field> <field name="type">search</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<search string="Wiki"> <search string="Document Page">
<field name="name" <field name="name"
filter_domain="['|', '|', ('name','ilike',self), ('section','ilike',self), ('tags','ilike',self)]" filter_domain="['|', '|', ('name','ilike',self), ('tags','ilike',self)]"
string="Wiki"/> string="Document Page"/>
<separator orientation="vertical"/>
<field name="write_date" groups="base.group_no_one"/> <field name="write_date" groups="base.group_no_one"/>
<separator orientation="vertical"/>
<filter icon="terp-gtk-jump-to-ltr" string="Need Review" domain="[('review','=',True)]"/> <filter icon="terp-gtk-jump-to-ltr" string="Need Review" domain="[('review','=',True)]"/>
<field name="group_id"/> <separator orientation="vertical"/>
<field name="write_uid"/> <field name="write_uid"/>
<field name="parent_id"/>
<newline/>
<group expand="0" string="Group By..."> <group expand="0" string="Group By...">
<filter icon="terp-folder-blue" string="Wiki Group" domain="[]" context="{'group_by':'group_id'}"/> <filter icon="terp-folder-blue" string="Document Type" domain="[]" context="{'group_by':'parent_id'}"/>
<filter icon="terp-personal" string="Author" domain="[]" context="{'group_by':'create_uid'}"/> <filter icon="terp-personal" string="Author" domain="[]" context="{'group_by':'create_uid'}"/>
<filter icon="terp-personal+" string="Last Contributor" domain="[]" context="{'group_by':'write_uid'}"/> <filter icon="terp-personal+" string="Last Contributor" domain="[]" context="{'group_by':'write_uid'}"/>
</group> </group>
@ -191,8 +199,8 @@
<!-- search page for wiki --> <!-- search page for wiki -->
<record model="ir.actions.act_window" id="action_wiki"> <record model="ir.actions.act_window" id="action_wiki">
<field name="name">Wiki Pages</field> <field name="name">Document Pages</field>
<field name="res_model">wiki.wiki</field> <field name="res_model">document.page</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_wiki_tree"/>
@ -201,28 +209,27 @@
</record> </record>
<menuitem parent="knowledge.menu_document2" <menuitem parent="knowledge.menu_document2"
id="menu_action_wiki_wiki" name="Wiki Pages" id="menu_action_document_page" name="Document Pages"
action="action_wiki"/> action="action_wiki" />
<!-- Pages Waiting Review --> <!-- Pages Waiting Review -->
<record model="ir.actions.act_window" id="action_wiki_review"> <record model="ir.actions.act_window" id="action_wiki_review">
<field name="name">Pages Waiting Review</field> <field name="name">Pages Waiting Review</field>
<field name="res_model">wiki.wiki</field> <field name="res_model">document.page</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_wiki_tree"/>
<field name="context">{'section':'1'}</field>
<field name="domain">[('review','=',True)]</field> <field name="domain">[('review','=',True)]</field>
<field name="filter" eval="True"/> <field name="filter" eval="True"/>
</record> </record>
<!-- History Tree view --> <!-- History Tree view -->
<record model="ir.ui.view" id="view_wiki_history_tree"> <record model="ir.ui.view" id="view_wiki_history_tree">
<field name="name">wiki.wiki.history.tree</field> <field name="name">document.page.history.tree</field>
<field name="model">wiki.wiki.history</field> <field name="model">document.page.history</field>
<field name="type">tree</field> <field name="type">tree</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<tree string="Wiki History"> <tree string="Document History">
<field name="create_date"/> <field name="create_date"/>
<field name="write_uid"/> <field name="write_uid"/>
<field name="minor_edit" groups="base.group_no_one"/> <field name="minor_edit" groups="base.group_no_one"/>
@ -233,17 +240,22 @@
<!-- History Form view --> <!-- History Form view -->
<record model="ir.ui.view" id="wiki_history_form"> <record model="ir.ui.view" id="wiki_history_form">
<field name="name">wiki.wiki.history.form</field> <field name="name">document.page.history.form</field>
<field name="model">wiki.wiki.history</field> <field name="model">document.page.history</field>
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Wiki History" version="7.0"> <form string="Document Page History" version="7.0">
<sheet> <sheet>
<field name="wiki_id" colspan="4"/> <label for="document_id" class="oe_edit_only"/>
<field name="summary" colspan="4"/> <h1><field name="document_id" select="1" /></h1>
<field name="text_area" colspan="4" nolabel="1" widget="text_wiki"/> <label for="summary" class="oe_edit_only"/>
<field name="create_date" readonly="1"/> <field name="summary" colspan="4" />
<field name="minor_edit" groups="base.group_no_one"/> <label for="content" class="oe_edit_only"/>
<field name="content" colspan="4" nolabel="1" widget="text_wiki" onchange="onchange_content(content)"/>
<label for="create_date" class="oe_edit_only"/>
<field name="create_date" readonly="1"/>
<label for="minor_edit" class="oe_edit_only" groups="base.group_no_one"/>
<field name="minor_edit" groups="base.group_no_one"/>
</sheet> </sheet>
</form> </form>
</field> </field>
@ -252,28 +264,28 @@
<!-- History Action --> <!-- History Action -->
<record model="ir.actions.act_window" id="action_history"> <record model="ir.actions.act_window" id="action_history">
<field name="name">All Page Histories</field> <field name="name">All Page Histories</field>
<field name="res_model">wiki.wiki.history</field> <field name="res_model">document.page.history</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>
</record> </record>
<act_window <act_window
context="{'search_default_wiki_id': [active_id], 'default_wiki_id': active_id}" context="{'search_default_document_id': [active_id], 'default_document_id': active_id}"
id="act_wiki_wiki_history" id="act_wiki_wiki_history"
name="Page History" name="Page History"
res_model="wiki.wiki.history" res_model="document.page.history"
src_model="wiki.wiki"/> src_model="document.page"/>
<act_window <act_window
context="{'search_default_group_id': [active_id], 'default_group_id': active_id}" context="{'search_default_parent_id': [active_id], 'default_parent_id': active_id}"
id="act_wiki_group_open" id="act_wiki_group_open"
name="Search Page" name="Search Page"
res_model="wiki.wiki" res_model="document.page"
src_model="wiki.groups"/> src_model="document.page.type"/>
<record id="ir_open_wiki_pages" model="ir.values"> <record id="ir_open_wiki_pages" model="ir.values">
<field name="key2">tree_but_open</field> <field name="key2">tree_but_open</field>
<field name="model">wiki.groups</field> <field name="model">document.page.type</field>
<field name="name">Search a Page</field> <field name="name">Search a Page</field>
<field eval="'ir.actions.wizard,%d'%action_view_wiki_wiki_page_open" name="value"/> <field eval="'ir.actions.wizard,%d'%action_view_wiki_wiki_page_open" name="value"/>
</record> </record>

View File

@ -0,0 +1,398 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * document_page
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n"
"PO-Revision-Date: 2012-03-19 10:19+0000\n"
"Last-Translator: kifcaliph <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-03-20 04:56+0000\n"
"X-Generator: Launchpad (build 14969)\n"
#. module: document_page
#: field:document.page.type,template:0
msgid "Document Page Template"
msgstr "نموذج ويكي"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki
#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki
msgid "Document Pages"
msgstr "صفحات ويكي"
#. module: document_page
#: field:document.page.type,method:0
msgid "Display Method"
msgstr "طريقة العرض"
#. module: document_page
#: view:document.page:0 field:document.page,create_uid:0
msgid "Author"
msgstr "المؤلف"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open
#: view:document.page.page.open:0
msgid "Open Page"
msgstr "صفحة عامة"
#. module: document_page
#: field:document.page.type,menu_id:0
msgid "Menu"
msgstr "قائمة"
#. module: document_page
#: help:document.page
msgid "Indicates that this pages have a table of contents or not"
msgstr "يوضح ما اذا كانت هذه الصفحات تحتوى على جدول محتويات او لا تحتوى"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_history view:document.page.history:0
msgid "Document Page History"
msgstr "تاريخ ويكي"
#. module: document_page
#: field:document.page,minor_edit:0
msgid "Minor edit"
msgstr "تحرير ثانوى"
#. module: document_page
#: view:document.page:0 field:document.page,content:0
msgid "Content"
msgstr "محتوى"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Child Pages"
msgstr "صفحات فرعية"
#. module: document_page
#: field:document.page,parent_id:0
msgid "Parent Page"
msgstr "صفحة رئيسية"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor"
msgstr "المشارك الاخير"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "القائمة الرئيسية"
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "العنوان"
#. module: document_page
#: model:ir.model,name:document_page.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr "إنشائ قائمة بالمعالج"
#. module: document_page
#: field:document.page,history_id:0
msgid "History Lines"
msgstr "سطور التاريخ"
#. module: document_page
#: view:document.page:0
msgid "Page Content"
msgstr "محتوى الصفحة"
#. module: document_page
#: code:addons/document_page/document_page.py:237
#, python-format
msgid "There are no changes in revisions"
msgstr "لا يوجد تغيير فى المراجعات"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.type,notes:0
msgid "Description"
msgstr ""
#. module: document_page
#: field:document.page,review:0
msgid "Needs Review"
msgstr ""
#. module: document_page
#: help:document.page,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0 view:document.page.make.index:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history
msgid "Page History"
msgstr ""
#. module: document_page
#: selection:document.page.type,method:0
msgid "Tree"
msgstr ""
#. module: document_page
#: view:document.page.type:0
msgid "Page Template"
msgstr ""
#. module: document_page
#: field:document.page,tags:0
msgid "Keywords"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.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 ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:54
#, python-format
msgid "Warning"
msgstr ""
#. module: document_page
#: help:document.page.type,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: view:document.page.make.index:0
msgid "Want to create a Index on Selected Pages ? "
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
#: field:document.page.type,page_ids:0
msgid "Pages"
msgstr ""
#. module: document_page
#: view:document.page.type:0
msgid "Group Description"
msgstr ""
#. module: document_page
#: view:document.page.page.open:0
msgid "Want to open a wiki page? "
msgstr ""
#. module: document_page
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Meta Information"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0
msgid "Notes"
msgstr ""
#. module: document_page
#: selection:document.page.type,method:0
msgid "List"
msgstr ""
#. module: document_page
#: field:document.page,edit_summary:0 field:document.page.history,edit_summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: field:document.page.type,create_date:0
msgid "Created Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "All Page Histories"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wiki_wiki
msgid "document.page"
msgstr ""
#. module: document_page
#: help:document.page.type,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr ""
#. module: document_page
#: view:wizard.document.page.history.show_diff:0
msgid "Close"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,wiki_id:0
msgid "Wiki Id"
msgstr ""
#. module: document_page
#: field:document.page.type,home:0 selection:document.page.type,method:0
msgid "Home Page"
msgstr ""
#. module: document_page
#: help:document.page,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Modification Information"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0
msgid "Wiki"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.type:0
msgid "Configuration"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index
#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values
#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0
msgid "Create Index"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
#: view:document_page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page.history,minor_edit:0
msgid "This is a major edit ?"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki_groups
#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse
#: model:ir.model,name:document_page.model_wiki_groups
#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0
msgid "Wiki Groups"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Topic"
msgstr ""
#. module: document_page
#: field:document.page.history,write_uid:0
msgid "Modify By"
msgstr ""
#. module: document_page
#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981
#: field:document.page,type:0
#, python-format
msgid "Table of Contents"
msgstr ""
#. module: document_page
#: view:document.page.type:0 view:document.page.page.open:0
msgid "Open Wiki Page"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,file_path:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Need Review"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki_review
msgid "Pages Waiting Review"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.act_wiki_group_open
msgid "Search Page"
msgstr ""

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-04-07 04:55+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 15060)\n"
"X-Poedit-Language: Czech\n" "X-Poedit-Language: Czech\n"
#. module: wiki #. module: wiki

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -0,0 +1,423 @@
# #-#-#-#-# document_page.pot (OpenERP Server 6.1rc1) #-#-#-#-#
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * document_page
#
# #-#-#-#-# document_page.pot.web (PROJECT VERSION) #-#-#-#-#
# Translations template for PROJECT.
# Copyright (C) 2012 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
#, fuzzy
msgid ""
msgstr ""
"#-#-#-#-# document_page.pot (OpenERP Server 6.1rc1) #-#-#-#-#\n"
"Project-Id-Version: OpenERP Server 6.1rc1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-08 00:37+0000\n"
"PO-Revision-Date: 2012-02-08 00:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
"#-#-#-#-# document_page.pot.web (PROJECT VERSION) #-#-#-#-#\n"
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 0.9.6\n"
#. module: document_page
#: field:document.page.type,template:0
msgid "Document page Template"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki
#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki
msgid "Document Pages"
msgstr ""
#. module: document_page
#: field:document.page.type,method:0
msgid "Display Method"
msgstr ""
#. module: document_page
#: view:document.page:0 field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open
#: view:document.page.page.open:0
msgid "Open Page"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Indicates that this pages have a table of contents or not"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0
msgid "Document page History"
msgstr ""
#. module: document_page
#: field:document.page,minor_edit:0
msgid "Minor edit"
msgstr ""
#. module: document_page
#: view:document.page:0 field:document.page,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Child Pages"
msgstr ""
#. module: document_page
#: field:document.page,parent_id:0
msgid "Parent Page"
msgstr ""
#. module: document_page
#: view:document.page:0 field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,history_id:0
msgid "History Lines"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Page Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "Warning !"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:237
#, python-format
msgid "There are no changes in revisions"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.type,notes:0
msgid "Description"
msgstr ""
#. module: document_page
#: field:document.page,review:0
msgid "Needs Review"
msgstr ""
#. module: document_page
#: help:document.page,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0 view:document.page.make.index:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history
msgid "Page History"
msgstr ""
#. module: document_page
#: selection:document.page.type,method:0
msgid "Tree"
msgstr ""
#. module: document_page
#: view:document.page.type:0
msgid "Page Template"
msgstr ""
#. module: document_page
#: field:document.page,tags:0
msgid "Keywords"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.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 ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:54
#, python-format
msgid "Warning"
msgstr ""
#. module: document_page
#: help:document.page.type,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: view:document.page.make.index:0
msgid "Want to create a Index on Selected Pages ? "
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
#: field:document.page.type,page_ids:0
msgid "Pages"
msgstr ""
#. module: document_page
#: view:document.page.type:0
msgid "Group Description"
msgstr ""
#. module: document_page
#: view:document.page.page.open:0
msgid "Want to open a wiki page? "
msgstr ""
#. module: document_page
#: field:document.page.history,content:0
msgid "Text area"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Meta Information"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0
msgid "Notes"
msgstr ""
#. module: document_page
#: selection:document.page.type,method:0
msgid "List"
msgstr ""
#. module: document_page
#: field:document.page,summary:0 field:document.page.history,edit_summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: field:document.page.groups,create_date:0
msgid "Created Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "All Page Histories"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wiki_wiki
msgid "document.page"
msgstr ""
#. module: document_page
#: help:document.page.type,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr ""
#. module: document_page
#: view:wizard.document.page.history.show_diff:0
msgid "Close"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,wiki_id:0
msgid "Wiki Id"
msgstr ""
#. module: document_page
#: field:document.page.type,home:0 selection:document.page.type,method:0
msgid "Home Page"
msgstr ""
#. module: document_page
#: help:document.page,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Modification Information"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0
msgid "Wiki"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.type:0
msgid "Configuration"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index
#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values
#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0
msgid "Create Index"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page.history,minor_edit:0
msgid "This is a major edit ?"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki_groups
#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse
#: model:ir.model,name:document_page.model_wiki_groups
#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0
msgid "Document Types"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Topic"
msgstr ""
#. module: document_page
#: field:document.page.history,write_uid:0
msgid "Modify By"
msgstr ""
#. module: document_page
#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981
#: field:document.page,type:0
#, python-format
msgid "Type"
msgstr ""
#. module: document_page
#: view:document.page.type:0 view:document.page.page.open:0
msgid "Open Document Page"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,file_path:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Need Review"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_wiki_review
msgid "Pages Waiting Review"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.act_wiki_group_open
msgid "Search Page"
msgstr ""

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
"X-Poedit-Country: GREECE\n" "X-Poedit-Country: GREECE\n"
"X-Poedit-Language: Greek\n" "X-Poedit-Language: Greek\n"
"X-Poedit-SourceCharset: utf-8\n" "X-Poedit-SourceCharset: utf-8\n"

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-11 05:09+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14771)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -8,13 +8,13 @@ msgstr ""
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n"
"PO-Revision-Date: 2012-02-20 01:10+0000\n" "PO-Revision-Date: 2012-02-20 01:10+0000\n"
"Last-Translator: Freddy Gonzalez <freddy.gonzalez.contreras@gmail.com>\n" "Last-Translator: Freddy Gonzalez <freddy.gonzalez@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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-21 05:55+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14838)\n"
"Language: \n" "Language: \n"
#. module: wiki #. module: wiki

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0
@ -97,7 +97,7 @@ msgstr "Menu Parent"
#: code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "There is no section in this Page" msgid "There is no section in this Page"
msgstr "Il n'y a pas de section dans cette page" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 #: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0

View File

@ -15,8 +15,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0
@ -97,7 +97,7 @@ msgstr "Menu Superiore"
#: code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "There is no section in this Page" msgid "There is no section in this Page"
msgstr "Non è presente alcuna sezione in questa pagina" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 #: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
@ -328,7 +328,7 @@ msgstr "Home page"
#. module: wiki #. module: wiki
#: help:wiki.wiki,parent_id:0 #: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic" msgid "Allows you to link with the other page with in the current topic"
msgstr "Consente di collegare con un altra pagina con il topic attuale" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
@ -382,7 +382,7 @@ msgstr "Crea Menu"
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,minor_edit:0 #: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?" msgid "This is a major edit ?"
msgstr "E' questa una modifica importante?" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups #: model:ir.actions.act_window,name:wiki.action_wiki_groups

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-06-17 04:35+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 15419)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
"Language: lt\n" "Language: lt\n"
#. module: wiki #. module: wiki

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -9,13 +9,13 @@ msgstr ""
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n"
"PO-Revision-Date: 2011-03-31 12:08+0000\n" "PO-Revision-Date: 2011-03-31 12:08+0000\n"
"Last-Translator: Rolv Råen <Unknown>\n" "Last-Translator: Rolv Råen (adEgo) <Unknown>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\n" "Language-Team: Norwegian Bokmal <nb@li.org>\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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0
@ -30,7 +30,7 @@ msgstr "Strony Wiki"
#. module: wiki #. module: wiki
#: field:wiki.groups,method:0 #: field:wiki.groups,method:0
msgid "Display Method" msgid "Display Method"
msgstr "Metoda wyświetlania" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 #: view:wiki.wiki:0 field:wiki.wiki,create_uid:0
@ -56,7 +56,7 @@ msgstr "Sekcja"
#. module: wiki #. module: wiki
#: help:wiki.wiki,toc:0 #: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not" msgid "Indicates that this pages have a table of contents or not"
msgstr "Oznacza, czy ta strona na spis treści, czy nie" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 #: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
@ -76,17 +76,17 @@ msgstr "Zawartość"
#. module: wiki #. module: wiki
#: field:wiki.wiki,child_ids:0 #: field:wiki.wiki,child_ids:0
msgid "Child Pages" msgid "Child Pages"
msgstr "Strony podrzędne" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,parent_id:0 #: field:wiki.wiki,parent_id:0
msgid "Parent Page" msgid "Parent Page"
msgstr "Strona nadrzędna" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 #: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor" msgid "Last Contributor"
msgstr "Ostatni kontrybutor" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.create.menu,menu_parent_id:0 #: field:wiki.create.menu,menu_parent_id:0
@ -97,7 +97,7 @@ msgstr "Menu nadrzędne"
#: code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "There is no section in this Page" msgid "There is no section in this Page"
msgstr "Nie ma sekcji na tej stronie" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 #: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
@ -122,24 +122,24 @@ msgstr "Pozycje historii"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Page Content" msgid "Page Content"
msgstr "Zawartość strony" msgstr ""
#. module: wiki #. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "Warning !" msgid "Warning !"
msgstr "Ostrzeżenie !" msgstr ""
#. module: wiki #. module: wiki
#: code:addons/wiki/wiki.py:237 #: code:addons/wiki/wiki.py:237
#, python-format #, python-format
msgid "There are no changes in revisions" msgid "There are no changes in revisions"
msgstr "Brak zmian w wersjach" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,section:0 #: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1" msgid "Use page section code like 1.2.1"
msgstr "Stosuj kod sekcji strony jak 1.2.1" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.create.menu,menu_name:0 #: field:wiki.create.menu,menu_name:0
@ -154,29 +154,29 @@ msgstr "Opis"
#. module: wiki #. module: wiki
#: field:wiki.wiki,review:0 #: field:wiki.wiki,review:0
msgid "Needs Review" msgid "Needs Review"
msgstr "Wymaga przejrzenia" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,review:0 #: help:wiki.wiki,review:0
msgid "" msgid ""
"Indicates that this page should be reviewed, raising the attention of other " "Indicates that this page should be reviewed, raising the attention of other "
"contributors" "contributors"
msgstr "Oznacza, że strona powinna być przejrzana przez innych kontrybutorów" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 #: view:wiki.create.menu:0 view:wiki.make.index:0
msgid "Menu Information" msgid "Menu Information"
msgstr "Informacja o menu" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history #: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History" msgid "Page History"
msgstr "Historia strony" msgstr ""
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
msgid "Tree" msgid "Tree"
msgstr "Drzewo" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
@ -186,7 +186,7 @@ msgstr "Szablon strony"
#. module: wiki #. module: wiki
#: field:wiki.wiki,tags:0 #: field:wiki.wiki,tags:0
msgid "Keywords" msgid "Keywords"
msgstr "Słowa kluczowe" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki #: model:ir.actions.act_window,help:wiki.action_wiki
@ -201,7 +201,7 @@ msgstr ""
#: code:addons/wiki/wizard/wiki_show_diff.py:54 #: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format #, python-format
msgid "Warning" msgid "Warning"
msgstr "Ostrzeżenie" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.groups,home:0 #: help:wiki.groups,home:0
@ -223,7 +223,7 @@ msgstr ""
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values #: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0 #: view:wizard.wiki.history.show_diff:0
msgid "Difference" msgid "Difference"
msgstr "Różnica" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,page_ids:0 #: field:wiki.groups,page_ids:0
@ -233,7 +233,7 @@ msgstr "Strony"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
msgid "Group Description" msgid "Group Description"
msgstr "Opis Grupy" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki.page.open:0 #: view:wiki.wiki.page.open:0
@ -253,7 +253,7 @@ msgstr "Obszar tekstu"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Meta Information" msgid "Meta Information"
msgstr "Metainformacje" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,create_date:0 #: field:wiki.wiki,create_date:0
@ -268,7 +268,7 @@ msgstr "Uwagi"
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
msgid "List" msgid "List"
msgstr "Lista" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 #: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
@ -298,7 +298,7 @@ msgstr ""
#. module: wiki #. module: wiki
#: view:wizard.wiki.history.show_diff:0 #: view:wizard.wiki.history.show_diff:0
msgid "Close" msgid "Close"
msgstr "Zamknięte" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff #: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
@ -313,7 +313,7 @@ msgstr "Wiki Id"
#. module: wiki #. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0 #: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page" msgid "Home Page"
msgstr "Strona główna" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,parent_id:0 #: help:wiki.wiki,parent_id:0
@ -361,7 +361,7 @@ msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Group By..." msgid "Group By..."
msgstr "Grupuj wg..." msgstr ""
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu #: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
@ -385,7 +385,7 @@ msgstr "Grupy wiki"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Topic" msgid "Topic"
msgstr "Temat" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,write_uid:0 #: field:wiki.wiki.history,write_uid:0

View File

@ -13,13 +13,13 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0
msgid "Wiki Template" msgid "Wiki Template"
msgstr "Template Wiki" msgstr "Modelo Wiki"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki #: model:ir.actions.act_window,name:wiki.action_wiki
@ -56,7 +56,7 @@ msgstr "Secção"
#. module: wiki #. module: wiki
#: help:wiki.wiki,toc:0 #: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not" msgid "Indicates that this pages have a table of contents or not"
msgstr "Indica que estas páginas têm uma tabela de conteúdos ou não" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 #: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
@ -76,28 +76,28 @@ msgstr "Conteúdo"
#. module: wiki #. module: wiki
#: field:wiki.wiki,child_ids:0 #: field:wiki.wiki,child_ids:0
msgid "Child Pages" msgid "Child Pages"
msgstr "Páginas Descendentes" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,parent_id:0 #: field:wiki.wiki,parent_id:0
msgid "Parent Page" msgid "Parent Page"
msgstr "Página Ascendente" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 #: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor" msgid "Last Contributor"
msgstr "Último contribuinte" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.create.menu,menu_parent_id:0 #: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu" msgid "Parent Menu"
msgstr "Menu Ascendente" msgstr "Menu do Ascendente"
#. module: wiki #. module: wiki
#: code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "There is no section in this Page" msgid "There is no section in this Page"
msgstr "Não há secção nesta página" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 #: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
@ -112,7 +112,7 @@ msgstr "Título"
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu #: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu" msgid "Wizard Create Menu"
msgstr "Assitente de criação do menu" msgstr "Assitente de criação de menu"
#. module: wiki #. module: wiki
#: field:wiki.wiki,history_id:0 #: field:wiki.wiki,history_id:0
@ -122,19 +122,19 @@ msgstr "Linhas do Histórico"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Page Content" msgid "Page Content"
msgstr "Conteúdo da Página" msgstr "Conteúdo de página"
#. module: wiki #. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "Warning !" msgid "Warning !"
msgstr "Aviso !" msgstr "Alerta!"
#. module: wiki #. module: wiki
#: code:addons/wiki/wiki.py:237 #: code:addons/wiki/wiki.py:237
#, python-format #, python-format
msgid "There are no changes in revisions" msgid "There are no changes in revisions"
msgstr "Não há mudanças nas revisões" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,section:0 #: help:wiki.wiki,section:0
@ -173,7 +173,7 @@ msgstr "Informação do Menu"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history #: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History" msgid "Page History"
msgstr "Histórico da Página" msgstr ""
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
@ -183,12 +183,12 @@ msgstr "Árvore"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
msgid "Page Template" msgid "Page Template"
msgstr "Template da Página" msgstr "Modelo da Página"
#. module: wiki #. module: wiki
#: field:wiki.wiki,tags:0 #: field:wiki.wiki,tags:0
msgid "Keywords" msgid "Keywords"
msgstr "Palavras-Chave" msgstr "Palavras-chave"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki #: model:ir.actions.act_window,help:wiki.action_wiki
@ -218,7 +218,7 @@ msgstr "Data"
#. module: wiki #. module: wiki
#: view:wiki.make.index:0 #: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? " msgid "Want to create a Index on Selected Pages ? "
msgstr "Pretende criar um Índice nas Páginas Selecionadas? " msgstr "Pretende criar um Índice nas Páginas Seleccionadas? "
#. module: wiki #. 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
@ -235,12 +235,12 @@ msgstr "Páginas"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
msgid "Group Description" msgid "Group Description"
msgstr "Descrição do Grupo" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki.page.open:0 #: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? " msgid "Want to open a wiki page? "
msgstr "Quer abrir uma página wiki? " msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,section:0 #: field:wiki.groups,section:0
@ -270,7 +270,7 @@ msgstr "Notas"
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
msgid "List" msgid "List"
msgstr "Lista" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 #: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
@ -280,7 +280,7 @@ msgstr "Resumo"
#. module: wiki #. module: wiki
#: field:wiki.groups,create_date:0 #: field:wiki.groups,create_date:0
msgid "Created Date" msgid "Created Date"
msgstr "Data de Criação" msgstr "Data Criada"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history #: model:ir.actions.act_window,name:wiki.action_history
@ -315,7 +315,7 @@ msgstr "ID do Wiki"
#. module: wiki #. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0 #: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page" msgid "Home Page"
msgstr "Página Inicial" msgstr "Página inicial"
#. module: wiki #. module: wiki
#: help:wiki.wiki,parent_id:0 #: help:wiki.wiki,parent_id:0
@ -325,7 +325,7 @@ msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Modification Information" msgid "Modification Information"
msgstr "Informações modificação" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,group_id:0 #: help:wiki.wiki,group_id:0
@ -358,7 +358,7 @@ msgstr "Criar Índex"
#: code:addons/wiki/wizard/wiki_show_diff.py:54 #: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format #, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!" msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr "Precisa selecionar no mínimo 1 ou no máximo 2 históricos revistos!" msgstr "Precisa seleccionar no mínimo 1 ou no máximo 2 históricos revistos!"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0
@ -51,12 +51,12 @@ msgstr "Meniu"
#. module: wiki #. module: wiki
#: field:wiki.wiki,section:0 #: field:wiki.wiki,section:0
msgid "Section" msgid "Section"
msgstr "Sectiune" msgstr "Secţiune"
#. module: wiki #. module: wiki
#: help:wiki.wiki,toc:0 #: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not" msgid "Indicates that this pages have a table of contents or not"
msgstr "Indica daca aceste pagini au un cuprins sau nu" msgstr "Indică dacă aceste pagini au un cuprins sau nu"
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 #: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
@ -66,22 +66,22 @@ msgstr "Istoric wiki"
#. module: wiki #. module: wiki
#: field:wiki.wiki,minor_edit:0 #: field:wiki.wiki,minor_edit:0
msgid "Minor edit" msgid "Minor edit"
msgstr "Editare minora" msgstr "Modificare minoră"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 #: view:wiki.wiki:0 field:wiki.wiki,text_area:0
msgid "Content" msgid "Content"
msgstr "Continut" msgstr "Conţinut"
#. module: wiki #. module: wiki
#: field:wiki.wiki,child_ids:0 #: field:wiki.wiki,child_ids:0
msgid "Child Pages" msgid "Child Pages"
msgstr "Pagini subordonate" msgstr "Pagini subordonate (copii)"
#. module: wiki #. module: wiki
#: field:wiki.wiki,parent_id:0 #: field:wiki.wiki,parent_id:0
msgid "Parent Page" msgid "Parent Page"
msgstr "Pagini principale" msgstr "Pagini principale (părinte)"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 #: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
@ -91,18 +91,18 @@ msgstr "Ultimul colaborator"
#. module: wiki #. module: wiki
#: field:wiki.create.menu,menu_parent_id:0 #: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu" msgid "Parent Menu"
msgstr "Meniu Principal" msgstr "Meniu principal (părinte)"
#. module: wiki #. module: wiki
#: code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "There is no section in this Page" msgid "There is no section in this Page"
msgstr "Nu exista nicio sectiune in aceasta Pagina" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 #: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
msgid "Wiki Group" msgid "Wiki Group"
msgstr "Grup Wiki" msgstr "Grup wiki"
#. module: wiki #. module: wiki
#: field:wiki.wiki,name:0 #: field:wiki.wiki,name:0
@ -112,34 +112,34 @@ msgstr "Titlu"
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu #: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu" msgid "Wizard Create Menu"
msgstr "Wizard Creeaza Meniul" msgstr "Wizard Creează meniul"
#. module: wiki #. module: wiki
#: field:wiki.wiki,history_id:0 #: field:wiki.wiki,history_id:0
msgid "History Lines" msgid "History Lines"
msgstr "Istoric Linii" msgstr "Istoricul liniilor"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Page Content" msgid "Page Content"
msgstr "Continutul Paginii" msgstr "Conținutul paginii"
#. module: wiki #. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "Warning !" msgid "Warning !"
msgstr "Avertizare !" msgstr "Avertisment !"
#. module: wiki #. module: wiki
#: code:addons/wiki/wiki.py:237 #: code:addons/wiki/wiki.py:237
#, python-format #, python-format
msgid "There are no changes in revisions" msgid "There are no changes in revisions"
msgstr "Nu exista modificari la revizii" msgstr "Nu există modificări la revizii"
#. module: wiki #. module: wiki
#: help:wiki.wiki,section:0 #: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1" msgid "Use page section code like 1.2.1"
msgstr "Folositi codul sectiunii paginii, cum ar fi 1.2.1" msgstr "Folosiți codul secțiunii paginii, cum ar fi 1.2.1"
#. module: wiki #. module: wiki
#: field:wiki.create.menu,menu_name:0 #: field:wiki.create.menu,menu_name:0
@ -154,7 +154,7 @@ msgstr "Descriere"
#. module: wiki #. module: wiki
#: field:wiki.wiki,review:0 #: field:wiki.wiki,review:0
msgid "Needs Review" msgid "Needs Review"
msgstr "Necesita Verificare" msgstr "Necesită verificare"
#. module: wiki #. module: wiki
#: help:wiki.wiki,review:0 #: help:wiki.wiki,review:0
@ -162,18 +162,18 @@ msgid ""
"Indicates that this page should be reviewed, raising the attention of other " "Indicates that this page should be reviewed, raising the attention of other "
"contributors" "contributors"
msgstr "" msgstr ""
"Indica faptul ca aceasta pagina ar trebui verificata, atragand atentia altor " "Indică faptul că această pagină ar trebui verificată, atrăgand atentia altor "
"colaboratori" "colaboratori"
#. module: wiki #. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 #: view:wiki.create.menu:0 view:wiki.make.index:0
msgid "Menu Information" msgid "Menu Information"
msgstr "Informatii meniu" msgstr "Informaţii meniu"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history #: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History" msgid "Page History"
msgstr "Istoric Pagina" msgstr "Istoric pagină"
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
@ -183,7 +183,7 @@ msgstr "Arbore"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
msgid "Page Template" msgid "Page Template"
msgstr "Sablon pagina" msgstr "Sablon pagină"
#. module: wiki #. module: wiki
#: field:wiki.wiki,tags:0 #: field:wiki.wiki,tags:0
@ -198,41 +198,41 @@ msgid ""
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " "(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format." "There is a basic wiki editing for text format."
msgstr "" msgstr ""
"Cu Paginile Wiki puteti impartasi idei si intrebari cu colegii " "Cu Paginile WIki puteti impărtăsi idei si intrebări cu colegii "
"dumneavoastra. Puteti crea un document nou care poate fi conectat la una sau " "dumneavoastră. Puteti crea un document noucare poate fi conectat la una sau "
"mai multe aplicatii (MRC, Vanzari, etc.). Puteti folosi cuvinte cheie pentru " "mai multe aplicatii (MRC, Vanzări, etc.). Puteti folosi cuvinte cheie pentru "
"a accesa cu usurina paginile dumneavoastra wiki. Exista o editare de baza " "a accesa cu usurintă paginile dumneavoastră wiki. Există o editare de bază "
"pentru formatul text." "pentru formatul text."
#. module: wiki #. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54 #: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format #, python-format
msgid "Warning" msgid "Warning"
msgstr "Atentionare" msgstr "Avertisment"
#. module: wiki #. module: wiki
#: help:wiki.groups,home:0 #: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page" msgid "Required to select home page if display method is Home Page"
msgstr "" msgstr ""
"Este obligatoriu sa selectati pagina de pornire daca metoda de afisare este " "Este obligatoriu să selectati pagina de pornire dacă metoda de afisare este "
"Pagina de pornire" "Pagina de pornire"
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,create_date:0 #: field:wiki.wiki.history,create_date:0
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Dată"
#. module: wiki #. module: wiki
#: view:wiki.make.index:0 #: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? " msgid "Want to create a Index on Selected Pages ? "
msgstr "Doriti sa creati un index pentru Paginile Selectate ? " msgstr "Doriți să creați un index pentru paginile selectate ? "
#. module: wiki #. 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
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values #: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0 #: view:wizard.wiki.history.show_diff:0
msgid "Difference" msgid "Difference"
msgstr "Diferenta" msgstr "Diferenţă"
#. module: wiki #. module: wiki
#: field:wiki.groups,page_ids:0 #: field:wiki.groups,page_ids:0
@ -247,27 +247,27 @@ msgstr "Descriere Grup"
#. module: wiki #. module: wiki
#: view:wiki.wiki.page.open:0 #: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? " msgid "Want to open a wiki page? "
msgstr "Doriti sa deschideti o pagina wiki? " msgstr "Doriti să deschideti o pagină wiki? "
#. module: wiki #. module: wiki
#: field:wiki.groups,section:0 #: field:wiki.groups,section:0
msgid "Make Section ?" msgid "Make Section ?"
msgstr "Creeaza Sectiunea ?" msgstr "Creează secțiunea ?"
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,text_area:0 #: field:wiki.wiki.history,text_area:0
msgid "Text area" msgid "Text area"
msgstr "Zona text" msgstr "Zonă text"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Meta Information" msgid "Meta Information"
msgstr "Meta Informatii" msgstr "Meta Informații"
#. module: wiki #. module: wiki
#: field:wiki.wiki,create_date:0 #: field:wiki.wiki,create_date:0
msgid "Created on" msgid "Created on"
msgstr "Creat la" msgstr "Creat in"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 #: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0
@ -277,7 +277,7 @@ msgstr "Note"
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
msgid "List" msgid "List"
msgstr "Lista" msgstr "Listă"
#. module: wiki #. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 #: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
@ -287,12 +287,12 @@ msgstr "Rezumat"
#. module: wiki #. module: wiki
#: field:wiki.groups,create_date:0 #: field:wiki.groups,create_date:0
msgid "Created Date" msgid "Created Date"
msgstr "Data crearii" msgstr "Data creării"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history #: model:ir.actions.act_window,name:wiki.action_history
msgid "All Page Histories" msgid "All Page Histories"
msgstr "Istoric Toate paginile" msgstr "Toate paginile istoricului"
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki #: model:ir.model,name:wiki.model_wiki_wiki
@ -303,17 +303,17 @@ msgstr "wiki.wiki"
#: help:wiki.groups,method:0 #: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group" msgid "Define the default behaviour of the menu created on this group"
msgstr "" msgstr ""
"Defineste comportamentul predefinit al meniului creat pentru acest grup" "Defineste comportamentul predefinit al meniului creat pentreu acest grup"
#. module: wiki #. module: wiki
#: view:wizard.wiki.history.show_diff:0 #: view:wizard.wiki.history.show_diff:0
msgid "Close" msgid "Close"
msgstr "Inchide" msgstr "Închide"
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff #: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
msgid "wizard.wiki.history.show_diff" msgid "wizard.wiki.history.show_diff"
msgstr "asistent.wiki.istoric.arata_diferente" msgstr "wizard.wiki.history.show_diff"
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,wiki_id:0 #: field:wiki.wiki.history,wiki_id:0
@ -323,17 +323,17 @@ msgstr "ID wiki"
#. module: wiki #. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0 #: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page" msgid "Home Page"
msgstr "Pagina de pornire" msgstr "Pagină de pornire"
#. module: wiki #. module: wiki
#: help:wiki.wiki,parent_id:0 #: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic" msgid "Allows you to link with the other page with in the current topic"
msgstr "Va permite sa va conectati la o alta pagina cu subiectul curent" msgstr "Vă permite să vă conectati la o altă pagină in subiectul curent"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Modification Information" msgid "Modification Information"
msgstr "Informatii Modificare" msgstr "Informatii modificare"
#. module: wiki #. module: wiki
#: help:wiki.wiki,group_id:0 #: help:wiki.wiki,group_id:0
@ -348,7 +348,7 @@ msgstr "Wiki"
#. module: wiki #. module: wiki
#: field:wiki.wiki,write_date:0 #: field:wiki.wiki,write_date:0
msgid "Modification Date" msgid "Modification Date"
msgstr "Data Modificarii" msgstr "Data modificării"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
@ -360,29 +360,29 @@ msgstr "Configurare"
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values #: 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 #: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0
msgid "Create Index" msgid "Create Index"
msgstr "Creeaza Index" msgstr "Creare index"
#. module: wiki #. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54 #: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format #, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!" msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr "Trebuie sa selectati minim 1 si maxim 2 revizuiri ale istoricului!" msgstr "Trebuie să selectati minim 1 și maxim 2 revizuiri ale istoricului"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Group By..." msgid "Group By..."
msgstr "Grupeaza dupa..." msgstr "Grupează după..."
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu #: 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 #: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0
msgid "Create Menu" msgid "Create Menu"
msgstr "Creeaza Meniu" msgstr "Creează meniu"
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,minor_edit:0 #: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?" msgid "This is a major edit ?"
msgstr "Este aceasta o modificare majora ?" msgstr "Este aceasta o modificare majoră ?"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups #: model:ir.actions.act_window,name:wiki.action_wiki_groups
@ -417,12 +417,12 @@ msgstr "Deschide Pagina Wiki"
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open #: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page" msgid "wiz open page"
msgstr "wizard deschidere pagina" msgstr "wizard deschidere pagină"
#. module: wiki #. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 #: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0
msgid "Cancel" msgid "Cancel"
msgstr "Anuleaza" msgstr "Anulează"
#. module: wiki #. module: wiki
#: field:wizard.wiki.history.show_diff,file_path:0 #: field:wizard.wiki.history.show_diff,file_path:0
@ -432,17 +432,17 @@ msgstr "Diferit"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Need Review" msgid "Need Review"
msgstr "Necesita Verificare" msgstr "Necesită verificare"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_review #: model:ir.actions.act_window,name:wiki.action_wiki_review
msgid "Pages Waiting Review" msgid "Pages Waiting Review"
msgstr "Pagini care asteapta verificare" msgstr "Pagini care asteaptă verificare"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open #: model:ir.actions.act_window,name:wiki.act_wiki_group_open
msgid "Search Page" msgid "Search Page"
msgstr "Cauta pagina" msgstr "Caută pagina"
#~ msgid "Document Management - Wiki" #~ msgid "Document Management - Wiki"
#~ msgstr "Managementul documentelor - wiki" #~ msgstr "Managementul documentelor - wiki"

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:10+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0
@ -30,7 +30,7 @@ msgstr "Wikisidor"
#. module: wiki #. module: wiki
#: field:wiki.groups,method:0 #: field:wiki.groups,method:0
msgid "Display Method" msgid "Display Method"
msgstr "Visningsmetod" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 #: view:wiki.wiki:0 field:wiki.wiki,create_uid:0
@ -56,7 +56,7 @@ msgstr "Område"
#. module: wiki #. module: wiki
#: help:wiki.wiki,toc:0 #: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not" msgid "Indicates that this pages have a table of contents or not"
msgstr "Indikerar att denna sida har innehållsförteckning eller inte" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 #: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
@ -76,17 +76,17 @@ msgstr "Innehåll"
#. module: wiki #. module: wiki
#: field:wiki.wiki,child_ids:0 #: field:wiki.wiki,child_ids:0
msgid "Child Pages" msgid "Child Pages"
msgstr "Undersidor" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,parent_id:0 #: field:wiki.wiki,parent_id:0
msgid "Parent Page" msgid "Parent Page"
msgstr "Överliggande sida" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 #: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor" msgid "Last Contributor"
msgstr "Senaste författare" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.create.menu,menu_parent_id:0 #: field:wiki.create.menu,menu_parent_id:0
@ -97,7 +97,7 @@ msgstr "Huvudmeny"
#: code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format #, python-format
msgid "There is no section in this Page" msgid "There is no section in this Page"
msgstr "Stycke saknas på denna sida" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 #: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
@ -112,7 +112,7 @@ msgstr "Rubrik"
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu #: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu" msgid "Wizard Create Menu"
msgstr "Skapa guide-meny" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,history_id:0 #: field:wiki.wiki,history_id:0
@ -122,7 +122,7 @@ msgstr "Historikrader"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Page Content" msgid "Page Content"
msgstr "Sidinnehåll" msgstr ""
#. module: wiki #. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
@ -134,7 +134,7 @@ msgstr "Varning !"
#: code:addons/wiki/wiki.py:237 #: code:addons/wiki/wiki.py:237
#, python-format #, python-format
msgid "There are no changes in revisions" msgid "There are no changes in revisions"
msgstr "Det är inga ändringar att granska" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,section:0 #: help:wiki.wiki,section:0
@ -154,7 +154,7 @@ msgstr "Beskrivning"
#. module: wiki #. module: wiki
#: field:wiki.wiki,review:0 #: field:wiki.wiki,review:0
msgid "Needs Review" msgid "Needs Review"
msgstr "Behöver granskas" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,review:0 #: help:wiki.wiki,review:0
@ -162,8 +162,6 @@ msgid ""
"Indicates that this page should be reviewed, raising the attention of other " "Indicates that this page should be reviewed, raising the attention of other "
"contributors" "contributors"
msgstr "" msgstr ""
"Indikerar att denna sida bör granskas, höjer uppmärksamheten hos andra "
"bidragsgivare"
#. module: wiki #. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 #: view:wiki.create.menu:0 view:wiki.make.index:0
@ -173,12 +171,12 @@ msgstr "Menyinformation"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history #: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History" msgid "Page History"
msgstr "Sidhistorik" msgstr ""
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
msgid "Tree" msgid "Tree"
msgstr "Träd" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
@ -188,7 +186,7 @@ msgstr "Sidmall"
#. module: wiki #. module: wiki
#: field:wiki.wiki,tags:0 #: field:wiki.wiki,tags:0
msgid "Keywords" msgid "Keywords"
msgstr "Nyckelord" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki #: model:ir.actions.act_window,help:wiki.action_wiki
@ -198,10 +196,6 @@ msgid ""
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " "(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format." "There is a basic wiki editing for text format."
msgstr "" msgstr ""
"Med denna WIki-sida kan du dela ideer och frågor med dina medarbetare. Du "
"kan skapa nya dokument som knyts till en eller flera applikationer (CRM, "
"Kundorder etc), Du kan använda nyckelord för att hitta dina Wiki-sidor. "
"Grundläggande wiki-editering för textformatet."
#. module: wiki #. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54 #: code:addons/wiki/wizard/wiki_show_diff.py:54
@ -212,7 +206,7 @@ msgstr "Warning"
#. module: wiki #. module: wiki
#: help:wiki.groups,home:0 #: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page" msgid "Required to select home page if display method is Home Page"
msgstr "Krävs för att välja startsida om visningsmetoden är Hemsida" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,create_date:0 #: field:wiki.wiki.history,create_date:0
@ -229,7 +223,7 @@ msgstr "Vill du skapa ett index för aktuella sidor? "
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values #: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0 #: view:wizard.wiki.history.show_diff:0
msgid "Difference" msgid "Difference"
msgstr "Skillnad" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,page_ids:0 #: field:wiki.groups,page_ids:0
@ -239,12 +233,12 @@ msgstr "Sidor"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 #: view:wiki.groups:0
msgid "Group Description" msgid "Group Description"
msgstr "Gruppbeskrivning" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki.page.open:0 #: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? " msgid "Want to open a wiki page? "
msgstr "Önskar du öppna en wiki-sida? " msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.groups,section:0 #: field:wiki.groups,section:0
@ -259,7 +253,7 @@ msgstr "Textområde"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Meta Information" msgid "Meta Information"
msgstr "Metainformation" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,create_date:0 #: field:wiki.wiki,create_date:0
@ -274,7 +268,7 @@ msgstr "Anteckningar"
#. module: wiki #. module: wiki
#: selection:wiki.groups,method:0 #: selection:wiki.groups,method:0
msgid "List" msgid "List"
msgstr "Lista" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 #: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
@ -299,12 +293,12 @@ msgstr "wiki.wiki"
#. module: wiki #. module: wiki
#: help:wiki.groups,method:0 #: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group" msgid "Define the default behaviour of the menu created on this group"
msgstr "Definiera standardbeteende för menyn till denna grupp" msgstr ""
#. module: wiki #. module: wiki
#: view:wizard.wiki.history.show_diff:0 #: view:wizard.wiki.history.show_diff:0
msgid "Close" msgid "Close"
msgstr "Stäng" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff #: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
@ -319,22 +313,22 @@ msgstr "Wiki Id"
#. module: wiki #. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0 #: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page" msgid "Home Page"
msgstr "Webbplats" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,parent_id:0 #: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic" msgid "Allows you to link with the other page with in the current topic"
msgstr "Gör att du kan länka med den andra sidan med i den aktuella ämnet" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Modification Information" msgid "Modification Information"
msgstr "Ändringsinformation" msgstr ""
#. module: wiki #. module: wiki
#: help:wiki.wiki,group_id:0 #: help:wiki.wiki,group_id:0
msgid "Topic, also called Wiki Group" msgid "Topic, also called Wiki Group"
msgstr "Ämne, även kallad Wiki-grupp" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 #: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0
@ -367,7 +361,7 @@ msgstr "You need to select minimum 1 or maximum 2 history revision!"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Group By..." msgid "Group By..."
msgstr "Gruppera på..." msgstr ""
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu #: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
@ -391,7 +385,7 @@ msgstr "Wikigrupper"
#. module: wiki #. module: wiki
#: view:wiki.wiki:0 #: view:wiki.wiki:0
msgid "Topic" msgid "Topic"
msgstr "Ämne" msgstr ""
#. module: wiki #. module: wiki
#: field:wiki.wiki.history,write_uid:0 #: field:wiki.wiki.history,write_uid:0
@ -408,12 +402,12 @@ msgstr "Innehållsförteckning"
#. module: wiki #. module: wiki
#: view:wiki.groups:0 view:wiki.wiki.page.open:0 #: view:wiki.groups:0 view:wiki.wiki.page.open:0
msgid "Open Wiki Page" msgid "Open Wiki Page"
msgstr "Öppna Wiki-sida" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open #: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page" msgid "wiz open page"
msgstr "wiz öppen sida" msgstr ""
#. module: wiki #. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 #: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0
@ -433,12 +427,12 @@ msgstr "Behöver revideras"
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_review #: model:ir.actions.act_window,name:wiki.action_wiki_review
msgid "Pages Waiting Review" msgid "Pages Waiting Review"
msgstr "Sidor att granska" msgstr ""
#. module: wiki #. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open #: model:ir.actions.act_window,name:wiki.act_wiki_group_open
msgid "Search Page" msgid "Search Page"
msgstr "Söksida" msgstr ""
#~ msgid "Child Groups" #~ msgid "Child Groups"
#~ msgstr "Undergrupper" #~ msgstr "Undergrupper"

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-11 05:09+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14771)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -14,8 +14,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -13,8 +13,8 @@ msgstr ""
"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: 8bit\n"
"X-Launchpad-Export-Date: 2012-07-14 06:11+0000\n" "X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 15614)\n" "X-Generator: Launchpad (build 14763)\n"
#. module: wiki #. module: wiki
#: field:wiki.groups,template:0 #: field:wiki.groups,template:0

View File

@ -0,0 +1,8 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
document_page_all,document.page,model_document_page,,1,0,0,0
document_page_type_all,document.page.type,model_document_page_type,,1,0,0,0
document_page,document.page,model_document_page,base.group_user,1,1,1,1
document_page_type,document.page.type,model_document_page_type,base.group_system,1,1,1,1
document_page_history,document.page.history,model_document_page_history,base.group_user,1,0,1,0
access_document_page_sale_manager,document.page.manager,model_document_page,base.group_sale_manager,1,1,1,1
document_page_user,document.page user,model_document_page,base.group_document_user,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 document_page_all document.page model_document_page 1 0 0 0
3 document_page_type_all document.page.type model_document_page_type 1 0 0 0
4 document_page document.page model_document_page base.group_user 1 1 1 1
5 document_page_type document.page.type model_document_page_type base.group_system 1 1 1 1
6 document_page_history document.page.history model_document_page_history base.group_user 1 0 1 0
7 access_document_page_sale_manager document.page.manager model_document_page base.group_sale_manager 1 1 1 1
8 document_page_user document.page user model_document_page base.group_document_user 1 1 1 1

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="0">
<record id="base.group_document_user" model="res.groups">
<field name="name">User</field>
<field name="category_id" ref="base.module_category_knowledge_management"/>
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>
</data>
</openerp>

View File

@ -0,0 +1,5 @@
.oe_form_readonly .oe_notebook {
display: none;
}

View File

@ -0,0 +1,18 @@
openerp.document_page = function (openerp) {
openerp.web.form.widgets.add( 'text_wiki', 'openerp.web.form.FieldText');
openerp.web.form.FieldText = openerp.web.form.FieldText.extend({
render_value: function() {
var show_value = openerp.web.format_value(this.get('value'), this, '');
if (!this.get("effective_readonly")) {
this.$textarea.val(show_value);
if (show_value && this.view.options.resize_textareas) {
this.do_resize(this.view.options.resize_textareas);
}
}else{
var wiki_value = wiky.process(show_value || '');
this.$element.html(wiki_value);
}
},
});
};

View File

@ -0,0 +1,71 @@
-
In order to test the document_page in OpenERP, I create a new document page type on Select Display Method Tree
-
!record {model: document.page.type, id: wiki_groups_wikigrouptest0}:
method: tree
name: Wiki Group Test
notes: I can Generate New Group for Select Display method = Tree.
-
Now I will create new Doucment page and assign Group test to this page
-
!record {model: document.page, id: wiki_wiki_openerpwikiediting0}:
name: OpenERP Wiki Test
content: '=The Open ERP wiki=
The Open ERP wiki allows you to manage your enterprise contents using wiki
restructured texts. This module provides a collaborative way to manage internal
FAQs, quality manuals, technical references, etc.'
-
Now I will update the wikipage with other text
-
!record {model: document.page, id: wiki_wiki_openerpwikiediting0}:
content: '=The Open ERP wiki=
The Open ERP wiki allows you to manage your enterprise contents using wiki
restructured texts. This module provides a collaborative way to manage internal
FAQs, quality manuals, technical references, etc.
Wiki text can easily be edited
'
-
I check the page history for the current page by clicking on "Page History".After that find difference between history.
-
!python {model: wizard.document.page.history.show_diff}: |
hist_obj = model.pool.get('document.page.history')
ids = hist_obj.search(cr, uid, [('document_id', '=', ref("wiki_wiki_openerpwikiediting0"))])
model.get_diff(cr, uid, {'active_ids': ids[:] })
-
I create a new Document page type on the Given Home Page
-
!record {model: document.page.type, id: wiki_groups_wikigroupediting0}:
name: Wiki Group Editing
home: document_page.wiki_wiki_quickstart0
-
I Open the page for click on "Open Document Page" button.
-
!python {model: document.page.type}: |
self.open_document_page(cr, uid, [ref("wiki_groups_wikigroupediting0")], context)
-
In order to create a menu I will create wizard data
-
!record {model: document.page.type, id: document_page.wiki_groups_wikiformatting0}:
home: document_page.wiki_wiki_main
-
I create a Menu by clicking on "create menu" button.
-
!record {model: document.page.create.menu, id: wiki_create_menu_0}:
menu_name: Wiki Test menu
menu_parent_id: base.menu_base_partner
-
I fill in the form and create the menu
-
!python {model: document.page.create.menu}: |
ids = self.search(cr, uid, [])
self.document_page_menu_create(cr, uid, ids, context)

View File

@ -19,9 +19,9 @@
# #
############################################################################## ##############################################################################
import wiki_wiki_page_open import document_page_page_open
import wiki_create_menu import document_page_make_index
import wiki_make_index import document_page_create_menu
import wiki_show_diff import document_page_show_diff
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -21,9 +21,9 @@
from osv import fields, osv from osv import fields, osv
class wiki_create_menu(osv.osv_memory): class document_page_create_menu(osv.osv_memory):
""" Create Menu """ """ Create Menu """
_name = "wiki.create.menu" _name = "document.page.create.menu"
_description = "Wizard Create Menu" _description = "Wizard Create Menu"
_columns = { _columns = {
@ -41,7 +41,7 @@ class wiki_create_menu(osv.osv_memory):
""" """
if context is None: if context is None:
context = {} context = {}
obj_wiki_group = self.pool.get('wiki.groups') obj_wiki_group = self.pool.get('document.page.type')
obj_view = self.pool.get('ir.ui.view') obj_view = self.pool.get('ir.ui.view')
obj_menu = self.pool.get('ir.ui.menu') obj_menu = self.pool.get('ir.ui.menu')
obj_action = self.pool.get('ir.actions.act_window') obj_action = self.pool.get('ir.actions.act_window')
@ -56,10 +56,10 @@ class wiki_create_menu(osv.osv_memory):
if not data: if not data:
return {} return {}
value = { value = {
'name': 'Wiki Page', 'name': 'Document Page',
'view_type': 'form', 'view_type': 'form',
'view_mode': 'form,tree', 'view_mode': 'form,tree',
'res_model': 'wiki.wiki', 'res_model': 'document.page',
'view_id': False, 'view_id': False,
'type': 'ir.actions.act_window', 'type': 'ir.actions.act_window',
'nodestroy': True, 'nodestroy': True,
@ -72,7 +72,7 @@ class wiki_create_menu(osv.osv_memory):
value['view_type'] = 'form' value['view_type'] = 'form'
value['view_mode'] = 'tree,form' value['view_mode'] = 'tree,form'
elif group.method == 'tree': elif group.method == 'tree':
view_id = obj_view.search(cr, uid, [('name', '=', 'wiki.wiki.tree.children')]) view_id = obj_view.search(cr, uid, [('name', '=', 'document.page.tree.children')])
value['view_id'] = view_id value['view_id'] = view_id
value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', False)] value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', False)]
value['view_type'] = 'tree' value['view_type'] = 'tree'
@ -87,8 +87,49 @@ class wiki_create_menu(osv.osv_memory):
}, context) }, context)
obj_wiki_group.write(cr, uid, [group_id], {'menu_id':menu_id}) obj_wiki_group.write(cr, uid, [group_id], {'menu_id':menu_id})
return {'type': 'ir.actions.act_window_close'} return {'type': 'ir.actions.act_window_close'}
def document_page_menu_create(self, cr, uid, ids, context=None):
if context is None:
context = {}
obj_document_group = self.pool.get('document.page')
obj_view = self.pool.get('ir.ui.view')
obj_menu = self.pool.get('ir.ui.menu')
obj_action = self.pool.get('ir.actions.act_window')
group_id = context.get('active_id', False)
if not group_id:
return {}
datas = self.browse(cr, uid, ids, context=context)
data = False
if datas:
data = datas[0]
if not data:
return {}
value = {
'name': 'Document Page',
'view_type': 'form',
'view_mode': 'form,tree',
'res_model': 'document.page',
'view_id': False,
'type': 'ir.actions.act_window',
'nodestroy': True,
}
group = obj_document_group.browse(cr, uid, group_id, context=context)
value['domain'] = "[('parent_id','=',%d)]" % (group.id)
value['res_id'] = group.id
action_id = obj_action.create(cr, uid, value)
menu_id = obj_menu.create(cr, uid, {
'name': data.menu_name,
'parent_id':data.menu_parent_id.id,
'icon': 'STOCK_DIALOG_QUESTION',
'action': 'ir.actions.act_window,'+ str(action_id),
}, context)
obj_document_group.write(cr, uid, [group_id], {'menu_id':menu_id})
return {'type': 'ir.actions.act_window_close'}
wiki_create_menu() document_page_create_menu()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

Some files were not shown because too many files have changed in this diff Show More