[MERGE]Merge trunk-website-al branch and removed new created snippet and add class oe_structure in description.

bzr revid: bth@tinyerp.com-20130924064129-ss5gi0nxbm26mlfi
This commit is contained in:
bth-openerp 2013-09-24 12:11:29 +05:30
commit 438f81b4e9
113 changed files with 1533 additions and 14425 deletions

View File

@ -1,133 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.osv import fields, osv
from openerp.tools.translate import _
import difflib
from openerp import tools
class document_page(osv.osv):
_name = "document.page"
_description = "Document Page"
_order = 'name'
def _get_page_index(self, cr, uid, page, link=True):
index = []
for subpage in page.child_ids:
index += ["<li>"+ self._get_page_index(cr, uid, subpage) +"</li>"]
r = ''
if link:
r = '<a href="#id=%s">%s</a>'%(page.id,page.name)
if index:
r += "<ul>" + "".join(index) + "</ul>"
return r
def _get_display_content(self, cr, uid, ids, name, args, context=None):
res = {}
for page in self.browse(cr, uid, ids, context=context):
if page.type == "category":
content = self._get_page_index(cr, uid, page, link=False)
else:
content = page.content
res[page.id] = content
return res
_columns = {
'name': fields.char('Title', required=True),
'type':fields.selection([('content','Content'), ('category','Category')], 'Type', help="Page type"),
'parent_id': fields.many2one('document.page', 'Category', domain=[('type','=','category')]),
'child_ids': fields.one2many('document.page', 'parent_id', 'Children'),
'content': fields.text("Content"),
'display_content': fields.function(_get_display_content, string='Displayed Content', type='text'),
'history_ids': fields.one2many('document.page.history', 'page_id', 'History'),
'menu_id': fields.many2one('ir.ui.menu', "Menu", readonly=True),
'create_date': fields.datetime("Created on", select=True, readonly=True),
'create_uid': fields.many2one('res.users', 'Author', select=True, readonly=True),
'write_date': fields.datetime("Modification Date", select=True, readonly=True),
'write_uid': fields.many2one('res.users', "Last Contributor", select=True, readonly=True),
}
_defaults = {
'type':'content',
}
def onchange_parent_id(self, cr, uid, ids, parent_id, content, context=None):
res = {}
if parent_id and not content:
parent = self.browse(cr, uid, parent_id, context=context)
if parent.type == "category":
res['value'] = {
'content': parent.content,
}
return res
def create_history(self, cr, uid, ids, vals, context=None):
for i in ids:
history = self.pool.get('document.page.history')
if vals.get('content'):
res = {
'content': vals.get('content', ''),
'page_id': i,
}
history.create(cr, uid, res)
def create(self, cr, uid, vals, context=None):
page_id = super(document_page, self).create(cr, uid, vals, context)
self.create_history(cr, uid, [page_id], vals, context)
return page_id
def write(self, cr, uid, ids, vals, context=None):
result = super(document_page, self).write(cr, uid, ids, vals, context)
self.create_history(cr, uid, ids, vals, context)
return result
class document_page_history(osv.osv):
_name = "document.page.history"
_description = "Document Page History"
_order = 'id DESC'
_rec_name = "create_date"
_columns = {
'page_id': fields.many2one('document.page', 'Page'),
'summary': fields.char('Summary', size=256, select=True),
'content': fields.text("Content"),
'create_date': fields.datetime("Date"),
'create_uid': fields.many2one('res.users', "Modified By"),
}
def getDiff(self, cr, uid, v1, v2, context=None):
history_pool = self.pool.get('document.page.history')
text1 = history_pool.read(cr, uid, [v1], ['content'])[0]['content']
text2 = history_pool.read(cr, uid, [v2], ['content'])[0]['content']
line1 = line2 = ''
if text1:
line1 = text1.splitlines(1)
if text2:
line2 = text2.splitlines(1)
if (not line1 and not line2) or (line1 == line2):
raise osv.except_osv(_('Warning!'), _('There are no changes in revisions.'))
diff = difflib.HtmlDiff()
return diff.make_table(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=True)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -1,41 +0,0 @@
<?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

@ -1,130 +0,0 @@
<?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="demo_category1" model="document.page">
<field name="name">OpenERP Features</field>
<field name="type">category</field>
<field name="content">
Summary of the feature
Long explanation
Conclusion
Additional ressources
</field>
</record>
<record id="demo_page1" model="document.page">
<field name="name">OpenERP 6.1. Functional Demo</field>
<field name="parent_id" ref="demo_category1"/>
<field name="content">
<![CDATA[
<br>
<br>
The news is out, OpenERP's latest version 6.1. is here. It's more<br>
user-friendly, even more business oriented and efficient to manage your company<br>
<br>
How to discover the latest version 6.1.?<br>
<br>
Demo : <a target="http://demo.openerp.com" href="http://demo.openerp.com" style="background: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeF59z4EJADEIQ1F36k7u5E7ZKXeUQPACJ3wK7UNokVxVk9kHnQH7bY9hbDyDhNXgjpRLqFlo4M2GgfyJHhjq8V4agfrgPQX3JtJQGbofmCHgA/nAKks+JAjFAAAAAElFTkSuQmCC&quot;) no-repeat scroll right center transparent;padding-right: 13px;"></a><br>
Online: <a target="http://openerp.com/online" href="http://openerp.com/online" style="background: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeF59z4EJADEIQ1F36k7u5E7ZKXeUQPACJ3wK7UNokVxVk9kHnQH7bY9hbDyDhNXgjpRLqFlo4M2GgfyJHhjq8V4agfrgPQX3JtJQGbofmCHgA/nAKks+JAjFAAAAAElFTkSuQmCC&quot;) no-repeat scroll right center transparent;padding-right: 13px;"></a><br>
Download: <a target="http://openerp.com/downloads" href="http://openerp.com/downloads" style="background: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeF59z4EJADEIQ1F36k7u5E7ZKXeUQPACJ3wK7UNokVxVk9kHnQH7bY9hbDyDhNXgjpRLqFlo4M2GgfyJHhjq8V4agfrgPQX3JtJQGbofmCHgA/nAKks+JAjFAAAAAElFTkSuQmCC&quot;) no-repeat scroll right center transparent;padding-right: 13px;"></a><br>
<br>
We have also put together a functional demo that presents 6.1. Watch this video<br>
to learn directly from us what OpenERP 6.1. can do for you. Share it in your<br>
company, with your clients and implement it now for your business.<br>
<br>
<h3>Watch on Youtube!</h3><br>
<br>
<iframe width="480" height="390" src="http://www.youtube.com/embed/7jES2jxKMso " frameborder="0" allowfullscreen=""></iframe><br>
<br>
<br>
]]>
</field>
</record>
<record id="demo_page2" model="document.page">
<field name="name">Personalise Dashboards</field>
<field name="parent_id" ref="demo_category1"/>
<field name="content">
<![CDATA[
<br>
You like OpenERP, but feel like you want to personalise it more? Now, OpenERP<br>
goes a step further and lets you customize your dashboard. Thanks to a new<br>
feature that allows you to customize your dashboard by adding new boards of any<br>
search view.<br>
<br>
<h3>How is it done?</h3><br>
<br>
Step 1: access one search view <br>
<br>
Step 2: apply the filter you want to see at each connection to the application<br>
(eg. on sales, manufacturing, etc)<br>
<br>
Step 3: add it into the dashboard in the same space where you can save the filter<br>
<br>
Step 4: choose the application you want it visible on and the name of the array<br>
<br>
Look at this simple example below from Purchase, where I want to put on the<br>
application's dashboard "Purchases to Approve". After I access the search view<br>
and apply the filter for "Purchases to Approve", I can add it immediately to my<br>
Purchase dashboard.<br>
<br>
<img src="http://www.openerp.com/sites/default/files/fileattach/dashboard2_1(1).png" alt=""><br>
<br>
In less than a minute, the search view is visible on the dashboard<br>
<br>
<img src="http://www.openerp.com/sites/default/files/fileattach/dashboard2_2.png" alt=""><br>
<br>
Of course, you are free to delete what you don't need or like, but just in case<br>
you change your mind there is a reset button to return to the default view.<br>
<br>
<br>
]]>
</field>
</record>
<record id="demo_page3" model="document.page">
<field name="name">Touchscreen Point of Sale</field>
<field name="parent_id" ref="demo_category1"/>
<field name="content">
<![CDATA[
<br>
The brand new OpenERP touchscreen point of sale available with 6.1 allows you<br>
to manage your shop sales very easily. It's fully web based so that you don't<br>
have to install or deploy any software and all the sales shops can be easily<br>
consolidated. It works in connected and disconnected modes so that you can<br>
continue to sell if you lose your internet connection.<br>
<br>
<img src="http://www.openerp.com/sites/default/files/fileattach/POS(2).png" alt=""><br>
<br>
<h3>Here's a summary of its main features and benefits:</h3><br>
<br>
100% WEB based<br>
<br>
<ul><li>available for any touchscreen device (ipod, ipad, any tablet)mobile (with portable devices)</li><li>no installation required</li><li>no synchronization needed, completely integrated</li><li>continue working even when your connection is down if you close your browser, data won't be lost</li><li>fully web based with a clean interface smart interface</li></ul><br>
<br>
You have different options to select your products. You can do it through the<br>
barcode reader, just browse through the categories you have put in place (ie.<br>
drinks, snacks, meals, etc.), or text search in case neither of the other<br>
options work for you. If you need to use the POS for your restaurant, for<br>
example, your employees can record at the same time multiple tickets without<br>
having to wait to do one transaction at a time. Along, to facilitate payment,<br>
the application allows multiple payment methods.<br>
<br>
The POS application is so simple and accessible to use that your shop or<br>
restaurant will never need any other tool to manage orders. Due to its smart<br>
and user-friendly interface you don't need any training to learn how to use it.<br>
Think of it as an out-of-the-box solution to boost your business' productivity.<br>
<br>
]]>
</field>
</record>
</data>
</openerp>

View File

@ -1,162 +0,0 @@
<?xml version="1.0"?>
<openerp>
<data>
<menuitem name="Knowledge" id="knowledge.menu_document"/>
<menuitem name="Pages" id="menu_wiki" parent="knowledge.menu_document" sequence="20" />
<!-- wiki tree view -->
<record id="view_wiki_tree_children" model="ir.ui.view">
<field name="name">document.page.tree</field>
<field name="model">document.page</field>
<field name="field_parent">child_ids</field>
<field name="priority">100</field>
<field name="arch" type="xml">
<tree string="Document Page">
<field name="name"/>
<field name="write_uid"/>
<field name="write_date"/>
</tree>
</field>
</record>
<!-- wiki list view -->
<record id="view_wiki_tree" model="ir.ui.view">
<field name="name">document.page.list</field>
<field name="model">document.page</field>
<field name="arch" type="xml">
<tree string="Document Page">
<field name="name"/>
<field name="parent_id"/>
<field name="create_uid" invisible="1"/>
<field name="write_uid"/>
<field name="write_date"/>
</tree>
</field>
</record>
<!-- wiki Form view -->
<record id="view_wiki_form" model="ir.ui.view">
<field name="name">document.page.form</field>
<field name="model">document.page</field>
<field name="arch" type="xml">
<form string="Document Page" version="7.0">
<field name="type" invisible="1"/>
<h1><field name="name" placeholder="Name"/></h1>
<group class="oe_edit_only">
<group>
<field name="parent_id" on_change="onchange_parent_id(parent_id,content)" string="Category"/>
</group>
<group>
<field name="write_uid" groups="base.group_no_one"/>
<field name="write_date" groups="base.group_no_one"/>
<field name="menu_id" groups="base.group_no_one"/>
</group>
</group>
<div class="oe_edit_only" attrs="{'invisible':[('type','=','content')]}">
<label for="content" string="Template"/>
that will be used as a content template for all new page of this category.
</div>
<field name="content" placeholder="e.g. Once upon a time..." class="oe_edit_only" widget="html"/>
<div class="oe_document_page">
<field name="display_content" widget="html" class="oe_view_only" options='{"safe": True}'/>
</div>
</form>
</field>
</record>
<!-- page Search view -->
<record id="view_wiki_filter" model="ir.ui.view">
<field name="name">document.page.search</field>
<field name="model">document.page</field>
<field name="arch" type="xml">
<search string="Document Page">
<field name="name" string="Content" filter_domain="['|', ('name','ilike',self), ('content','ilike',self)]"/>
<field name="write_uid"/>
<field name="parent_id"/>
<group expand="0" string="Group By...">
<filter string="Document Type" domain="[]" context="{'group_by':'parent_id'}"/>
<filter string="Author" domain="[]" context="{'group_by':'create_uid'}"/>
<filter string="Last Contributor" domain="[]" context="{'group_by':'write_uid'}"/>
</group>
</search>
</field>
</record>
<!-- page action -->
<record id="action_page" model="ir.actions.act_window">
<field name="name">Pages</field>
<field name="res_model">document.page</field>
<field name="domain">[('type','=','content')]</field>
<field name="context">{'default_type': 'content'}</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="view_wiki_tree"/>
<field name="search_view_id" ref="view_wiki_filter"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to create a new web page.
</p>
</field>
</record>
<menuitem id="menu_page" parent="menu_wiki" name="Pages" action="action_page" sequence="10"/>
<record id="action_category" model="ir.actions.act_window">
<field name="name">Category</field>
<field name="res_model">document.page</field>
<field name="domain">[('type','=','category')]</field>
<field name="context">{'default_type': 'category'}</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="view_wiki_tree"/>
<field name="search_view_id" ref="view_wiki_filter"/>
</record>
<menuitem id="menu_category" parent="menu_wiki" name="Categories" action="action_category" sequence="20"/>
<!-- History Tree view -->
<record model="ir.ui.view" id="view_wiki_history_tree">
<field name="name">document.page.history.tree</field>
<field name="model">document.page.history</field>
<field name="arch" type="xml">
<tree string="Document History">
<field name="create_date"/>
<field name="create_uid"/>
<field name="page_id"/>
</tree>
</field>
</record>
<!-- History Form view -->
<record model="ir.ui.view" id="wiki_history_form">
<field name="name">document.page.history.form</field>
<field name="model">document.page.history</field>
<field name="arch" type="xml">
<form string="Document Page History" version="7.0">
<label for="page_id" class="oe_edit_only"/>
<h1><field name="page_id" select="1" /></h1>
<label for="create_date" class="oe_edit_only"/>
<field name="create_date" readonly="1"/>
<label for="content" class="oe_edit_only"/>
<field name="content" colspan="4"/>
</form>
</field>
</record>
<!-- History Action -->
<record model="ir.actions.act_window" id="action_history">
<field name="name">Page history</field>
<field name="res_model">document.page.history</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem id="menu_page_history" parent="menu_wiki" name="Pages history" action="action_history" sequence="30" groups="base.group_no_one"/>
<act_window
id="action_related_page_history"
context="{'search_default_page_id': [active_id], 'default_page_id': active_id}"
domain="[('page_id','=',active_id)]"
name="Page History"
res_model="document.page.history"
src_model="document.page"/>
<act_window
id="action_related_page_create_menu"
name="Create Menu"
res_model="document.page.create.menu"
target="new"
view_type="form"
view_mode="form"
src_model="document.page"/>
</data>
</openerp>

View File

@ -1,255 +0,0 @@
# Arabic translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "الفئة"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "المشارك الاخير"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "الكاتب"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "القائمة"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "تاريخ الصفحة"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "المحتوى"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "تجميع حسب..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "الاسم"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "النوع"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "تم التعديل عليها بواسطة"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "أو"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "نوع الصفحة"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "معلومات القائمة"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:12+0000\n"
"Last-Translator: Boris <boris.t.ivanov@gmail.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Автор"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Меню"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Съдържание"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Групиране по..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Заглавие"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Информация за меню"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Дата"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Страници"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Надменю"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Създадено на"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Резюме"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Име на меню"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Дата на редакция"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Създай меню"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Отказ"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Различия"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:14+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:13+0000\n"
"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
"<jesteve@zikzakmedia.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Últim col·laborador"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Històric pàgina"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Contingut"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Agrupa per..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Títol"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Assistent 'Crea menú'"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informació del menú"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Data"
#. 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 "Diferència"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Pàgines"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú pare"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Creat el"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Resum"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nom menú"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Data modificació"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Crea menú"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Cancel·la"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Dif."
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:12+0000\n"
"Last-Translator: Jiří Hajda <robie@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
"X-Poedit-Language: Czech\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Poslední přispěvatel"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Nabídka"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Historie stránky"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Obsah"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Seskupit podle..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Název"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Průvodce vytvořením nabídky"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informace nabídky"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. 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 "Rozdíly"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Stránky"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Rodičovská nabídka"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Vytvořeno"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Shrnutí"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Jméno nabídky"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Datum změny"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Vytvořit nabídku"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Zrušit"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Rozdíl"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Danish translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
# Ferdinand Gassauer <f.gassauer@chricar.at>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-18 06:54+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Kategorie"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Letzer Beitragender"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menü"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Dokumentenseite"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Seitenänderungsverlauf"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Inhalt"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Gruppiert je..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Vorlage"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr "diese wird für alle neuen Dokumente dieser Kategorie verwendet"
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Titel"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Assistent für Menüerzeugung"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Typ"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Geändert von"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "oder"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Seitentyp"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Menü"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Dokumenten Seite Historie"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Seiten Historie"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Es gibt keine Veränderungen in den Revisionen"
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. 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 "Differenz"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Seiten"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Kategorien"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Obermenü"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Erzeugt am"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr "Sie müssen zumindest 1 und maximal 2 Revisionen auswählen"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Seiten Historie"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Zusammenfassung"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Webseiten erstellen"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Dokument Historie"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Menü Bezeichnung"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Seite"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Historie"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Änderung am"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Erzeuge Menü"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Zeige Inhalt"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Warnung!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Abbrechen"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Differenz"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Dokumententyp"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "abhängige Elemente"

View File

@ -1,253 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * document_page
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0alpha\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-21 17:05+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,257 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:12+0000\n"
"Last-Translator: Panagiotis Kranidiotis <kranidiotis@vatica.org>\n"
"Language-Team: nls@hellug.gr <nls@hellug.gr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
"X-Poedit-Country: GREECE\n"
"X-Poedit-Language: Greek\n"
"X-Poedit-SourceCharset: utf-8\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Δημιουργός"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Μενού"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Περιεχόμενα"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Τίτλος"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Πληροφορίες Μενού"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Ημερομηνία"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Σελίδες"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Μενού Προέλευσης"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Δημιουργήθηκε στις"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Περίληψη"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Όνομα Μενού"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Ημερομηνία Τροποποίησης"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Δημιουργία Μενού"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Ακύρωση"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Διαφ."
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,257 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-11 21:47+0000\n"
"Last-Translator: Ana Juaristi Olalde <ajuaristio@gmail.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Categoría"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Último colaborador"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Página de documento"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Historial página"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Contenido"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Agrupar por..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Plantilla"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"esto será usado como una plantilla de contenido para todas las páginas de "
"esta categoría."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Título"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tipo"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificado por"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "o"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipo de página"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Información del menú"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Historia de página de documento"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Historial de páginas"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "No hay cambios en las revisiones."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Fecha"
#. 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 "Diferencia"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Páginas"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorías"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú padre"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Historial de página"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Resumen"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Crear páginas Web"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Historial del Documento"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Página"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Historial"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Crear menú"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Contenido mostrado"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "¡Advertencia!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Dif."
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Tipo de documento"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Hijos"

View File

@ -1,494 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n"
"PO-Revision-Date: 2009-09-23 14:54+0000\n"
"Last-Translator: Silvana Herrera <sherrera@thymbra.com>\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-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 14763)\n"
#. module: wiki
#: field:wiki.groups,template:0
msgid "Wiki Template"
msgstr "Plantilla Wiki"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki
#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki
msgid "Wiki Pages"
msgstr "Páginas Wiki"
#. module: wiki
#: field:wiki.groups,method:0
msgid "Display Method"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open
#: view:wiki.wiki.page.open:0
msgid "Open Page"
msgstr "Abrir página"
#. module: wiki
#: field:wiki.groups,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: wiki
#: field:wiki.wiki,section:0
msgid "Section"
msgstr "Sección"
#. module: wiki
#: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
msgid "Wiki History"
msgstr "Historial Wiki"
#. module: wiki
#: field:wiki.wiki,minor_edit:0
msgid "Minor edit"
msgstr "Edición menor"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,text_area:0
msgid "Content"
msgstr "Contenido"
#. module: wiki
#: field:wiki.wiki,child_ids:0
msgid "Child Pages"
msgstr ""
#. module: wiki
#: field:wiki.wiki,parent_id:0
msgid "Parent Page"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: wiki
#: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú padre"
#. module: wiki
#: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "There is no section in this Page"
msgstr ""
#. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
msgid "Wiki Group"
msgstr "Grupo Wiki"
#. module: wiki
#: field:wiki.wiki,name:0
msgid "Title"
msgstr "Título"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: wiki
#: field:wiki.wiki,history_id:0
msgid "History Lines"
msgstr "Líneas del historial"
#. module: wiki
#: view:wiki.wiki:0
msgid "Page Content"
msgstr ""
#. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "Warning !"
msgstr ""
#. module: wiki
#: code:addons/wiki/wiki.py:237
#, python-format
msgid "There are no changes in revisions"
msgstr ""
#. module: wiki
#: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1"
msgstr "Utilice código de sección de la página, por ejemplo 1.2.1"
#. module: wiki
#: field:wiki.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre del menú"
#. module: wiki
#: field:wiki.groups,notes:0
msgid "Description"
msgstr "Descripción"
#. module: wiki
#: field:wiki.wiki,review:0
msgid "Needs Review"
msgstr ""
#. module: wiki
#: help:wiki.wiki,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0
msgid "Menu Information"
msgstr "Información del menú"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History"
msgstr ""
#. module: wiki
#: selection:wiki.groups,method:0
msgid "Tree"
msgstr ""
#. module: wiki
#: view:wiki.groups:0
msgid "Page Template"
msgstr "Plantilla de página"
#. module: wiki
#: field:wiki.wiki,tags:0
msgid "Keywords"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki
msgid ""
"With Wiki Pages you can share ideas and questions with your coworkers. You "
"can create a new document that can be linked to one or several applications "
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format."
msgstr ""
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "Warning"
msgstr "Aviso"
#. module: wiki
#: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
#. module: wiki
#: field:wiki.wiki.history,create_date:0
msgid "Date"
msgstr "Fecha"
#. module: wiki
#: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? "
msgstr "¿Desea crear un índice sobre las páginas seleccionadas? "
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: wiki
#: field:wiki.groups,page_ids:0
msgid "Pages"
msgstr "Páginas"
#. module: wiki
#: view:wiki.groups:0
msgid "Group Description"
msgstr ""
#. module: wiki
#: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? "
msgstr ""
#. module: wiki
#: field:wiki.groups,section:0
msgid "Make Section ?"
msgstr "¿Crear sección?"
#. module: wiki
#: field:wiki.wiki.history,text_area:0
msgid "Text area"
msgstr "Área de texto"
#. module: wiki
#: view:wiki.wiki:0
msgid "Meta Information"
msgstr ""
#. module: wiki
#: field:wiki.wiki,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: wiki
#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0
msgid "Notes"
msgstr "Notas"
#. module: wiki
#: selection:wiki.groups,method:0
msgid "List"
msgstr ""
#. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
msgid "Summary"
msgstr "Resumen"
#. module: wiki
#: field:wiki.groups,create_date:0
msgid "Created Date"
msgstr "Fecha de creación"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history
msgid "All Page Histories"
msgstr "Todos los historiales de páginas"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki
msgid "wiki.wiki"
msgstr "wiki.wiki"
#. module: wiki
#: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr ""
#. module: wiki
#: view:wizard.wiki.history.show_diff:0
msgid "Close"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
msgid "wizard.wiki.history.show_diff"
msgstr "asistente.wiki.historial.mostrar_dif"
#. module: wiki
#: field:wiki.wiki.history,wiki_id:0
msgid "Wiki Id"
msgstr "ID Wiki"
#. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page"
msgstr ""
#. module: wiki
#: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0
msgid "Modification Information"
msgstr ""
#. module: wiki
#: help:wiki.wiki,group_id:0
msgid "Topic, also called Wiki Group"
msgstr ""
#. module: wiki
#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0
msgid "Wiki"
msgstr "Wiki"
#. module: wiki
#: field:wiki.wiki,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: wiki
#: view:wiki.groups:0
msgid "Configuration"
msgstr "Configuración"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values
#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0
msgid "Create Index"
msgstr "Crear índice"
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!"
#. module: wiki
#: view:wiki.wiki:0
msgid "Group By..."
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0
msgid "Create Menu"
msgstr "Crear menú"
#. module: wiki
#: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?"
msgstr "¿Es ésta una edición mayor?"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups
#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse
#: model:ir.model,name:wiki.model_wiki_groups
#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0
msgid "Wiki Groups"
msgstr "Grupos Wiki"
#. module: wiki
#: view:wiki.wiki:0
msgid "Topic"
msgstr ""
#. module: wiki
#: field:wiki.wiki.history,write_uid:0
msgid "Modify By"
msgstr "Modificado por"
#. module: wiki
#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981
#: field:wiki.wiki,toc:0
#, python-format
msgid "Table of Contents"
msgstr "Tabla de contenidos"
#. module: wiki
#: view:wiki.groups:0 view:wiki.wiki.page.open:0
msgid "Open Wiki Page"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr ""
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0
msgid "Cancel"
msgstr "Cancelar"
#. module: wiki
#: field:wizard.wiki.history.show_diff,file_path:0
msgid "Diff"
msgstr "Dif."
#. module: wiki
#: view:wiki.wiki:0
msgid "Need Review"
msgstr "Necesita revisión"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_review
msgid "Pages Waiting Review"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open
msgid "Search Page"
msgstr ""
#~ msgid "Child Groups"
#~ msgstr "Grupos hijos"
#~ msgid "Wiki Groups Links"
#~ msgstr "Enlaces grupos wiki"
#~ msgid ""
#~ "The Object name must start with x_ and not contain any special character !"
#~ msgstr ""
#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
#~ "especial!"
#~ msgid "Document Management - Wiki"
#~ msgstr "Gestión de documentos - Wiki"
#~ msgid "Wiki Configuration"
#~ msgstr "Configuración Wiki"
#~ msgid "Create a Menu"
#~ msgstr "Crear un menú"
#~ msgid "History Differance"
#~ msgstr "Diferencia de historial"
#~ msgid "Group Home Page"
#~ msgstr "Página de inicio del grupo"
#~ msgid "Differences"
#~ msgstr "Diferencias"
#~ msgid "Last Author"
#~ msgstr "Último autor"
#~ msgid "Document Management"
#~ msgstr "Gestión de documentos"
#~ msgid "Invalid XML for View Architecture!"
#~ msgstr "XML inválido para la definición de la vista !"
#~ msgid "Parent Group"
#~ msgstr "Grupo padre"
#~ msgid "Wiki Differance"
#~ msgstr "Diferencia Wiki"
#, python-format
#~ msgid "No action found"
#~ msgstr "No se ha encontrado la acción"
#~ msgid "Modifications"
#~ msgstr "Modificaciones"
#~ msgid "History"
#~ msgstr "Historial"
#~ msgid "Tags"
#~ msgstr "Etiquetas"

View File

@ -1,520 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n"
"PO-Revision-Date: 2012-02-20 01:10+0000\n"
"Last-Translator: Freddy Gonzalez <freddy.gonzalez@clearcorp.co.cr>\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-02-21 05:55+0000\n"
"X-Generator: Launchpad (build 14838)\n"
"Language: \n"
#. module: wiki
#: field:wiki.groups,template:0
msgid "Wiki Template"
msgstr "Plantilla Wiki"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki
#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki
msgid "Wiki Pages"
msgstr "Páginas Wiki"
#. module: wiki
#: field:wiki.groups,method:0
msgid "Display Method"
msgstr "Método de visualización"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open
#: view:wiki.wiki.page.open:0
msgid "Open Page"
msgstr "Abrir página"
#. module: wiki
#: field:wiki.groups,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: wiki
#: field:wiki.wiki,section:0
msgid "Section"
msgstr "Sección"
#. module: wiki
#: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not"
msgstr "Indica si estas páginas tienen una tabla de contenidos o no."
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
msgid "Wiki History"
msgstr "Historial Wiki"
#. module: wiki
#: field:wiki.wiki,minor_edit:0
msgid "Minor edit"
msgstr "Edición menor"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,text_area:0
msgid "Content"
msgstr "Contenido"
#. module: wiki
#: field:wiki.wiki,child_ids:0
msgid "Child Pages"
msgstr "Páginas hijas"
#. module: wiki
#: field:wiki.wiki,parent_id:0
msgid "Parent Page"
msgstr "Página padre"
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor"
msgstr "Último colaborador"
#. module: wiki
#: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú padre"
#. module: wiki
#: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "There is no section in this Page"
msgstr "No hay sección en esta página"
#. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
msgid "Wiki Group"
msgstr "Grupo Wiki"
#. module: wiki
#: field:wiki.wiki,name:0
msgid "Title"
msgstr "Título"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#. module: wiki
#: field:wiki.wiki,history_id:0
msgid "History Lines"
msgstr "Líneas historial"
#. module: wiki
#: view:wiki.wiki:0
msgid "Page Content"
msgstr "Contenido página"
#. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "Warning !"
msgstr "¡Aviso!"
#. module: wiki
#: code:addons/wiki/wiki.py:237
#, python-format
msgid "There are no changes in revisions"
msgstr "No hay cambios en revisiones"
#. module: wiki
#: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1"
msgstr "Utilice código de sección de la página, por ejemplo 1.2.1"
#. module: wiki
#: field:wiki.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: wiki
#: field:wiki.groups,notes:0
msgid "Description"
msgstr "Descripción"
#. module: wiki
#: field:wiki.wiki,review:0
msgid "Needs Review"
msgstr "Necesita revisión"
#. module: wiki
#: help:wiki.wiki,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
"Indica que esta página debería ser revisada, captando la atención de otros "
"colaboradores."
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0
msgid "Menu Information"
msgstr "Información del menú"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History"
msgstr "Historial página"
#. module: wiki
#: selection:wiki.groups,method:0
msgid "Tree"
msgstr "Árbol"
#. module: wiki
#: view:wiki.groups:0
msgid "Page Template"
msgstr "Plantilla de página"
#. module: wiki
#: field:wiki.wiki,tags:0
msgid "Keywords"
msgstr "Palabras clave"
#. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki
msgid ""
"With Wiki Pages you can share ideas and questions with your coworkers. You "
"can create a new document that can be linked to one or several applications "
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format."
msgstr ""
"Con páginas wiki puede compartir ideas y preguntas con sus compañeros de "
"trabajo. Puede crear un nuevo documento que puede ser relacionado con una o "
"varias aplicaciones (CRM, Ventas, etc.). Puede utilizar palabras clave para "
"facilitar el acceso a sus páginas wiki. Existe un editor básico para el "
"formato texto del wiki."
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "Warning"
msgstr "Advertencia"
#. module: wiki
#: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
"Es obligado seleccionar la página de inicio si el método de visualización es "
"Página inicial."
#. module: wiki
#: field:wiki.wiki.history,create_date:0
msgid "Date"
msgstr "Fecha"
#. module: wiki
#: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? "
msgstr "¿Desea crear un índice sobre las páginas seleccionadas? "
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0
msgid "Difference"
msgstr "Diferencia"
#. module: wiki
#: field:wiki.groups,page_ids:0
msgid "Pages"
msgstr "Páginas"
#. module: wiki
#: view:wiki.groups:0
msgid "Group Description"
msgstr "Descripción grupo"
#. module: wiki
#: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? "
msgstr "¿Desea abrir una página wiki? "
#. module: wiki
#: field:wiki.groups,section:0
msgid "Make Section ?"
msgstr "¿Crear sección?"
#. module: wiki
#: field:wiki.wiki.history,text_area:0
msgid "Text area"
msgstr "Área de texto"
#. module: wiki
#: view:wiki.wiki:0
msgid "Meta Information"
msgstr "Meta información"
#. module: wiki
#: field:wiki.wiki,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: wiki
#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0
msgid "Notes"
msgstr "Notas"
#. module: wiki
#: selection:wiki.groups,method:0
msgid "List"
msgstr "Lista"
#. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
msgid "Summary"
msgstr "Resumen"
#. module: wiki
#: field:wiki.groups,create_date:0
msgid "Created Date"
msgstr "Fecha de creación"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history
msgid "All Page Histories"
msgstr "Todos los historiales de páginas"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki
msgid "wiki.wiki"
msgstr "wiki.wiki"
#. module: wiki
#: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr "Define el comportamiento por defecto del menú creado en este grupo."
#. module: wiki
#: view:wizard.wiki.history.show_diff:0
msgid "Close"
msgstr "Cerrar"
#. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
msgid "wizard.wiki.history.show_diff"
msgstr "asistente.wiki.historial.mostrar_dif"
#. module: wiki
#: field:wiki.wiki.history,wiki_id:0
msgid "Wiki Id"
msgstr "ID Wiki"
#. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page"
msgstr "Página inicial"
#. module: wiki
#: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr "Le permite enlazar con la otra página dentro del tema actual."
#. module: wiki
#: view:wiki.wiki:0
msgid "Modification Information"
msgstr "Información modificación"
#. module: wiki
#: help:wiki.wiki,group_id:0
msgid "Topic, also called Wiki Group"
msgstr "Tema, también denominado Grupo wiki."
#. module: wiki
#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0
msgid "Wiki"
msgstr "Wiki"
#. module: wiki
#: field:wiki.wiki,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: wiki
#: view:wiki.groups:0
msgid "Configuration"
msgstr "Configuración"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values
#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0
msgid "Create Index"
msgstr "Crear índice"
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!"
#. module: wiki
#: view:wiki.wiki:0
msgid "Group By..."
msgstr "Agrupar por..."
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0
msgid "Create Menu"
msgstr "Crear menú"
#. module: wiki
#: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?"
msgstr "¿Es ésta una edición mayor?"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups
#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse
#: model:ir.model,name:wiki.model_wiki_groups
#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0
msgid "Wiki Groups"
msgstr "Grupos Wiki"
#. module: wiki
#: view:wiki.wiki:0
msgid "Topic"
msgstr "Tema"
#. module: wiki
#: field:wiki.wiki.history,write_uid:0
msgid "Modify By"
msgstr "Modificado por"
#. module: wiki
#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981
#: field:wiki.wiki,toc:0
#, python-format
msgid "Table of Contents"
msgstr "Tabla de contenido"
#. module: wiki
#: view:wiki.groups:0 view:wiki.wiki.page.open:0
msgid "Open Wiki Page"
msgstr "Abrir página wiki"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr "asistente abrir página"
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0
msgid "Cancel"
msgstr "Cancelar"
#. module: wiki
#: field:wizard.wiki.history.show_diff,file_path:0
msgid "Diff"
msgstr "Dif."
#. module: wiki
#: view:wiki.wiki:0
msgid "Need Review"
msgstr "Necesita revisión"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_review
msgid "Pages Waiting Review"
msgstr "Páginas esperando revisión"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open
msgid "Search Page"
msgstr "Buscar página"
#~ msgid ""
#~ "The Object name must start with x_ and not contain any special character !"
#~ msgstr ""
#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
#~ "especial!"
#~ msgid "Wiki Groups Links"
#~ msgstr "Enlaces grupos wiki"
#~ msgid "Child Groups"
#~ msgstr "Grupos hijos"
#~ msgid "Wiki Configuration"
#~ msgstr "Configuración Wiki"
#~ msgid "Document Management - Wiki"
#~ msgstr "Gestión de documentos - Wiki"
#~ msgid "Create a Menu"
#~ msgstr "Crear un menú"
#~ msgid "History Differance"
#~ msgstr "Diferencia historial"
#~ msgid "Group Home Page"
#~ msgstr "Página de inicio del grupo"
#~ msgid "Last Author"
#~ msgstr "Último autor"
#~ msgid "Differences"
#~ msgstr "Diferencias"
#~ msgid "Document Management"
#~ msgstr "Gestión de documentos"
#~ msgid "Invalid XML for View Architecture!"
#~ msgstr "¡XML inválido para la definición de la vista!"
#~ msgid "Parent Group"
#~ msgstr "Grupo padre"
#~ msgid "Wiki Differance"
#~ msgstr "Diferencia Wiki"
#, python-format
#~ msgid "No action found"
#~ msgstr "No se ha encontrado la acción"
#~ msgid "Modifications"
#~ msgstr "Modificaciones"
#~ msgid "History"
#~ msgstr "Historial"
#~ msgid "Tags"
#~ msgstr "Etiquetas"
#~ msgid "Invalid model name in the action definition."
#~ msgstr "Nombre de modelo no válido en la definición de acción."
#~ msgid ""
#~ "\n"
#~ "The base module to manage documents(wiki)\n"
#~ "\n"
#~ "keep track for the wiki groups, pages, and history\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "El módulo base para gestionar documentos (wiki)\n"
#~ "\n"
#~ "gestione los grupos, páginas e historial del wiki\n"
#~ " "

View File

@ -1,535 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:16+0000\n"
"PO-Revision-Date: 2011-01-13 02:46+0000\n"
"Last-Translator: Carlos @ smile.fr <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: 2011-09-05 05:38+0000\n"
"X-Generator: Launchpad (build 13830)\n"
#. module: wiki
#: field:wiki.groups,template:0
msgid "Wiki Template"
msgstr "Plantilla Wiki"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki
#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki
msgid "Wiki Pages"
msgstr "Páginas Wiki"
#. module: wiki
#: field:wiki.groups,method:0
msgid "Display Method"
msgstr "Método de visualización"
#. module: wiki
#: view:wiki.wiki:0
#: field:wiki.wiki,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open
#: view:wiki.wiki.page.open:0
msgid "Open Page"
msgstr "Abrir página"
#. module: wiki
#: field:wiki.groups,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: wiki
#: field:wiki.wiki,section:0
msgid "Section"
msgstr "Sección"
#. module: wiki
#: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not"
msgstr "Indica si estas páginas tienen una tabla de contenidos o no."
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history
#: view:wiki.wiki.history:0
msgid "Wiki History"
msgstr "Historial Wiki"
#. module: wiki
#: field:wiki.wiki,minor_edit:0
msgid "Minor edit"
msgstr "Edición menor"
#. module: wiki
#: view:wiki.wiki:0
#: field:wiki.wiki,text_area:0
msgid "Content"
msgstr "Contenido"
#. module: wiki
#: field:wiki.wiki,child_ids:0
msgid "Child Pages"
msgstr "Páginas hijas"
#. module: wiki
#: field:wiki.wiki,parent_id:0
msgid "Parent Page"
msgstr "Página padre"
#. module: wiki
#: view:wiki.wiki:0
#: field:wiki.wiki,write_uid:0
msgid "Last Contributor"
msgstr "Último colaborador"
#. module: wiki
#: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú padre"
#. module: wiki
#: help:wiki.wiki,group_id:0
msgid "Topic, also called Wiki Group"
msgstr "Tema, también denominado Grupo wiki."
#. module: wiki
#: field:wiki.groups,name:0
#: view:wiki.wiki:0
#: field:wiki.wiki,group_id:0
msgid "Wiki Group"
msgstr "Grupo Wiki"
#. module: wiki
#: field:wiki.wiki,name:0
msgid "Title"
msgstr "Título"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#. module: wiki
#: field:wiki.wiki,history_id:0
msgid "History Lines"
msgstr "Líneas historial"
#. module: wiki
#: view:wiki.wiki:0
msgid "Page Content"
msgstr "Contenido página"
#. module: wiki
#: code:addons/wiki/wiki.py:236
#, python-format
msgid "Warning !"
msgstr "¡Aviso!"
#. module: wiki
#: code:addons/wiki/wiki.py:236
#, python-format
msgid "There are no changes in revisions"
msgstr "No hay cambios en revisiones"
#. module: wiki
#: model:ir.module.module,shortdesc:wiki.module_meta_information
msgid "Document Management - Wiki"
msgstr "Gestión de documentos - Wiki"
#. module: wiki
#: field:wiki.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: wiki
#: field:wiki.groups,notes:0
msgid "Description"
msgstr "Descripción"
#. module: wiki
#: field:wiki.wiki,review:0
msgid "Needs Review"
msgstr "Necesita revisión"
#. module: wiki
#: help:wiki.wiki,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
"Indica que esta página debería ser revisada, captando la atención de otros "
"colaboradores."
#. module: wiki
#: view:wiki.create.menu:0
#: view:wiki.make.index:0
msgid "Menu Information"
msgstr "Información del menú"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History"
msgstr "Historial página"
#. module: wiki
#: selection:wiki.groups,method:0
msgid "Tree"
msgstr "Árbol"
#. module: wiki
#: view:wiki.groups:0
msgid "Page Template"
msgstr "Plantilla de página"
#. module: wiki
#: field:wiki.wiki,tags:0
msgid "Keywords"
msgstr "Palabras clave"
#. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki
msgid ""
"With Wiki Pages you can share ideas and questions with your coworkers. You "
"can create a new document that can be linked to one or several applications "
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format."
msgstr ""
"Con páginas wiki puede compartir ideas y preguntas con sus compañeros de "
"trabajo. Puede crear un nuevo documento que puede ser relacionado con una o "
"varias aplicaciones (CRM, Ventas, etc.). Puede utilizar palabras clave para "
"facilitar el acceso a sus páginas wiki. Existe un editor básico para el "
"formato texto del wiki."
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "Warning"
msgstr "Advertencia"
#. module: wiki
#: field:wiki.wiki,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: wiki
#: field:wiki.wiki.history,create_date:0
msgid "Date"
msgstr "Fecha"
#. module: wiki
#: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? "
msgstr "¿Desea crear un índice sobre las páginas seleccionadas? "
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0
msgid "Difference"
msgstr "Diferencia"
#. module: wiki
#: field:wiki.groups,page_ids:0
msgid "Pages"
msgstr "Páginas"
#. module: wiki
#: view:wiki.groups:0
msgid "Group Description"
msgstr "Descripción grupo"
#. module: wiki
#: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1"
msgstr "Utilice código de sección de la página, por ejemplo 1.2.1"
#. module: wiki
#: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? "
msgstr "¿Desea abrir una página wiki? "
#. module: wiki
#: field:wiki.groups,section:0
msgid "Make Section ?"
msgstr "¿Crear sección?"
#. module: wiki
#: field:wiki.wiki.history,text_area:0
msgid "Text area"
msgstr "Área de texto"
#. module: wiki
#: view:wiki.wiki:0
msgid "Meta Information"
msgstr "Meta información"
#. module: wiki
#: model:ir.module.module,description:wiki.module_meta_information
msgid ""
"\n"
"The base module to manage documents(wiki)\n"
"\n"
"keep track for the wiki groups, pages, and history\n"
" "
msgstr ""
"\n"
"El módulo base para gestionar documentos (wiki)\n"
"\n"
"gestione los grupos, páginas e historial del wiki\n"
" "
#. module: wiki
#: view:wiki.groups:0
#: view:wizard.wiki.history.show_diff:0
msgid "Notes"
msgstr "Notas"
#. module: wiki
#: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
"Es obligado seleccionar la página de inicio si el método de visualización es "
"Página inicial."
#. module: wiki
#: selection:wiki.groups,method:0
msgid "List"
msgstr "Lista"
#. module: wiki
#: field:wiki.wiki,summary:0
#: field:wiki.wiki.history,summary:0
msgid "Summary"
msgstr "Resumen"
#. module: wiki
#: field:wiki.groups,create_date:0
msgid "Created Date"
msgstr "Fecha de creación"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history
msgid "All Page Histories"
msgstr "Todos los historiales de páginas"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki
msgid "wiki.wiki"
msgstr "wiki.wiki"
#. module: wiki
#: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr "Define el comportamiento por defecto del menú creado en este grupo."
#. module: wiki
#: view:wizard.wiki.history.show_diff:0
msgid "Close"
msgstr "Cerrar"
#. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
msgid "wizard.wiki.history.show_diff"
msgstr "asistente.wiki.historial.mostrar_dif"
#. module: wiki
#: field:wiki.wiki.history,wiki_id:0
msgid "Wiki Id"
msgstr "ID Wiki"
#. module: wiki
#: field:wiki.groups,home:0
#: selection:wiki.groups,method:0
msgid "Home Page"
msgstr "Página inicial"
#. module: wiki
#: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr "Le permite enlazar con la otra página dentro del tema actual."
#. module: wiki
#: view:wiki.wiki:0
msgid "Modification Information"
msgstr "Información modificación"
#. module: wiki
#: model:ir.ui.menu,name:wiki.menu_wiki_configuration
#: view:wiki.wiki:0
msgid "Wiki"
msgstr "Wiki"
#. module: wiki
#: field:wiki.wiki,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: wiki
#: view:wiki.groups:0
msgid "Configuration"
msgstr "Configuración"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values
#: model:ir.model,name:wiki.model_wiki_make_index
#: view:wiki.make.index:0
msgid "Create Index"
msgstr "Crear índice"
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!"
#. module: wiki
#: view:wiki.wiki:0
msgid "Group By..."
msgstr "Agrupar por..."
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
#: view:wiki.create.menu:0
#: view:wiki.groups:0
#: view:wiki.make.index:0
msgid "Create Menu"
msgstr "Crear menú"
#. module: wiki
#: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?"
msgstr "¿Es ésta una edición mayor?"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups
#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse
#: model:ir.model,name:wiki.model_wiki_groups
#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups
#: view:wiki.groups:0
msgid "Wiki Groups"
msgstr "Grupos Wiki"
#. module: wiki
#: view:wiki.wiki:0
msgid "Topic"
msgstr "Tema"
#. module: wiki
#: field:wiki.wiki.history,write_uid:0
msgid "Modify By"
msgstr "Modificado por"
#. module: wiki
#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981
#: field:wiki.wiki,toc:0
#, python-format
msgid "Table of Contents"
msgstr "Tabla de contenido"
#. module: wiki
#: view:wiki.groups:0
#: view:wiki.wiki.page.open:0
msgid "Open Wiki Page"
msgstr "Abrir página wiki"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr "asistente abrir página"
#. module: wiki
#: view:wiki.create.menu:0
#: view:wiki.make.index:0
#: view:wiki.wiki.page.open:0
msgid "Cancel"
msgstr "Cancelar"
#. module: wiki
#: field:wizard.wiki.history.show_diff,file_path:0
msgid "Diff"
msgstr "Dif."
#. module: wiki
#: view:wiki.wiki:0
msgid "Need Review"
msgstr "Necesita revisión"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_review
msgid "Pages Waiting Review"
msgstr "Páginas esperando revisión"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open
msgid "Search Page"
msgstr "Buscar página"
#~ msgid ""
#~ "The Object name must start with x_ and not contain any special character !"
#~ msgstr ""
#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
#~ "especial!"
#~ msgid "Wiki Groups Links"
#~ msgstr "Enlaces grupos wiki"
#~ msgid "Child Groups"
#~ msgstr "Grupos hijos"
#~ msgid "Wiki Configuration"
#~ msgstr "Configuración Wiki"
#~ msgid "Create a Menu"
#~ msgstr "Crear un menú"
#~ msgid "History Differance"
#~ msgstr "Diferencia historial"
#~ msgid "Group Home Page"
#~ msgstr "Página de inicio del grupo"
#~ msgid "Last Author"
#~ msgstr "Último autor"
#~ msgid "Differences"
#~ msgstr "Diferencias"
#~ msgid "Document Management"
#~ msgstr "Gestión de documentos"
#~ msgid "Invalid XML for View Architecture!"
#~ msgstr "¡XML inválido para la definición de la vista!"
#~ msgid "Parent Group"
#~ msgstr "Grupo padre"
#~ msgid "Wiki Differance"
#~ msgstr "Diferencia Wiki"
#, python-format
#~ msgid "No action found"
#~ msgstr "No se ha encontrado la acción"
#~ msgid "Modifications"
#~ msgstr "Modificaciones"
#~ msgid "History"
#~ msgstr "Historial"
#~ msgid "Tags"
#~ msgstr "Etiquetas"
#~ msgid "Invalid model name in the action definition."
#~ msgstr "Nombre de modelo no válido en la definición de acción."

View File

@ -1,535 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:16+0000\n"
"PO-Revision-Date: 2011-01-13 02:46+0000\n"
"Last-Translator: Carlos @ smile.fr <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: 2011-09-05 05:38+0000\n"
"X-Generator: Launchpad (build 13830)\n"
#. module: wiki
#: field:wiki.groups,template:0
msgid "Wiki Template"
msgstr "Plantilla Wiki"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki
#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki
msgid "Wiki Pages"
msgstr "Páginas Wiki"
#. module: wiki
#: field:wiki.groups,method:0
msgid "Display Method"
msgstr "Método de visualización"
#. module: wiki
#: view:wiki.wiki:0
#: field:wiki.wiki,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open
#: view:wiki.wiki.page.open:0
msgid "Open Page"
msgstr "Abrir página"
#. module: wiki
#: field:wiki.groups,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: wiki
#: field:wiki.wiki,section:0
msgid "Section"
msgstr "Sección"
#. module: wiki
#: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not"
msgstr "Indica si estas páginas tienen una tabla de contenidos o no."
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history
#: view:wiki.wiki.history:0
msgid "Wiki History"
msgstr "Historial Wiki"
#. module: wiki
#: field:wiki.wiki,minor_edit:0
msgid "Minor edit"
msgstr "Edición menor"
#. module: wiki
#: view:wiki.wiki:0
#: field:wiki.wiki,text_area:0
msgid "Content"
msgstr "Contenido"
#. module: wiki
#: field:wiki.wiki,child_ids:0
msgid "Child Pages"
msgstr "Páginas hijas"
#. module: wiki
#: field:wiki.wiki,parent_id:0
msgid "Parent Page"
msgstr "Página padre"
#. module: wiki
#: view:wiki.wiki:0
#: field:wiki.wiki,write_uid:0
msgid "Last Contributor"
msgstr "Último colaborador"
#. module: wiki
#: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú padre"
#. module: wiki
#: help:wiki.wiki,group_id:0
msgid "Topic, also called Wiki Group"
msgstr "Tema, también denominado Grupo wiki."
#. module: wiki
#: field:wiki.groups,name:0
#: view:wiki.wiki:0
#: field:wiki.wiki,group_id:0
msgid "Wiki Group"
msgstr "Grupo Wiki"
#. module: wiki
#: field:wiki.wiki,name:0
msgid "Title"
msgstr "Título"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr "Asistente crear menú"
#. module: wiki
#: field:wiki.wiki,history_id:0
msgid "History Lines"
msgstr "Líneas historial"
#. module: wiki
#: view:wiki.wiki:0
msgid "Page Content"
msgstr "Contenido página"
#. module: wiki
#: code:addons/wiki/wiki.py:236
#, python-format
msgid "Warning !"
msgstr "¡Aviso!"
#. module: wiki
#: code:addons/wiki/wiki.py:236
#, python-format
msgid "There are no changes in revisions"
msgstr "No hay cambios en revisiones"
#. module: wiki
#: model:ir.module.module,shortdesc:wiki.module_meta_information
msgid "Document Management - Wiki"
msgstr "Gestión de documentos - Wiki"
#. module: wiki
#: field:wiki.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nombre menú"
#. module: wiki
#: field:wiki.groups,notes:0
msgid "Description"
msgstr "Descripción"
#. module: wiki
#: field:wiki.wiki,review:0
msgid "Needs Review"
msgstr "Necesita revisión"
#. module: wiki
#: help:wiki.wiki,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
"Indica que esta página debería ser revisada, captando la atención de otros "
"colaboradores."
#. module: wiki
#: view:wiki.create.menu:0
#: view:wiki.make.index:0
msgid "Menu Information"
msgstr "Información del menú"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History"
msgstr "Historial página"
#. module: wiki
#: selection:wiki.groups,method:0
msgid "Tree"
msgstr "Árbol"
#. module: wiki
#: view:wiki.groups:0
msgid "Page Template"
msgstr "Plantilla de página"
#. module: wiki
#: field:wiki.wiki,tags:0
msgid "Keywords"
msgstr "Palabras clave"
#. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki
msgid ""
"With Wiki Pages you can share ideas and questions with your coworkers. You "
"can create a new document that can be linked to one or several applications "
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format."
msgstr ""
"Con páginas wiki puede compartir ideas y preguntas con sus compañeros de "
"trabajo. Puede crear un nuevo documento que puede ser relacionado con una o "
"varias aplicaciones (CRM, Ventas, etc.). Puede utilizar palabras clave para "
"facilitar el acceso a sus páginas wiki. Existe un editor básico para el "
"formato texto del wiki."
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "Warning"
msgstr "Advertencia"
#. module: wiki
#: field:wiki.wiki,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: wiki
#: field:wiki.wiki.history,create_date:0
msgid "Date"
msgstr "Fecha"
#. module: wiki
#: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? "
msgstr "¿Desea crear un índice sobre las páginas seleccionadas? "
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0
msgid "Difference"
msgstr "Diferencia"
#. module: wiki
#: field:wiki.groups,page_ids:0
msgid "Pages"
msgstr "Páginas"
#. module: wiki
#: view:wiki.groups:0
msgid "Group Description"
msgstr "Descripción grupo"
#. module: wiki
#: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1"
msgstr "Utilice código de sección de la página, por ejemplo 1.2.1"
#. module: wiki
#: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? "
msgstr "¿Desea abrir una página wiki? "
#. module: wiki
#: field:wiki.groups,section:0
msgid "Make Section ?"
msgstr "¿Crear sección?"
#. module: wiki
#: field:wiki.wiki.history,text_area:0
msgid "Text area"
msgstr "Área de texto"
#. module: wiki
#: view:wiki.wiki:0
msgid "Meta Information"
msgstr "Meta información"
#. module: wiki
#: model:ir.module.module,description:wiki.module_meta_information
msgid ""
"\n"
"The base module to manage documents(wiki)\n"
"\n"
"keep track for the wiki groups, pages, and history\n"
" "
msgstr ""
"\n"
"El módulo base para gestionar documentos (wiki)\n"
"\n"
"gestione los grupos, páginas e historial del wiki\n"
" "
#. module: wiki
#: view:wiki.groups:0
#: view:wizard.wiki.history.show_diff:0
msgid "Notes"
msgstr "Notas"
#. module: wiki
#: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
"Es obligado seleccionar la página de inicio si el método de visualización es "
"Página inicial."
#. module: wiki
#: selection:wiki.groups,method:0
msgid "List"
msgstr "Lista"
#. module: wiki
#: field:wiki.wiki,summary:0
#: field:wiki.wiki.history,summary:0
msgid "Summary"
msgstr "Resumen"
#. module: wiki
#: field:wiki.groups,create_date:0
msgid "Created Date"
msgstr "Fecha de creación"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history
msgid "All Page Histories"
msgstr "Todos los historiales de páginas"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki
msgid "wiki.wiki"
msgstr "wiki.wiki"
#. module: wiki
#: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr "Define el comportamiento por defecto del menú creado en este grupo."
#. module: wiki
#: view:wizard.wiki.history.show_diff:0
msgid "Close"
msgstr "Cerrar"
#. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
msgid "wizard.wiki.history.show_diff"
msgstr "asistente.wiki.historial.mostrar_dif"
#. module: wiki
#: field:wiki.wiki.history,wiki_id:0
msgid "Wiki Id"
msgstr "ID Wiki"
#. module: wiki
#: field:wiki.groups,home:0
#: selection:wiki.groups,method:0
msgid "Home Page"
msgstr "Página inicial"
#. module: wiki
#: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr "Le permite enlazar con la otra página dentro del tema actual."
#. module: wiki
#: view:wiki.wiki:0
msgid "Modification Information"
msgstr "Información modificación"
#. module: wiki
#: model:ir.ui.menu,name:wiki.menu_wiki_configuration
#: view:wiki.wiki:0
msgid "Wiki"
msgstr "Wiki"
#. module: wiki
#: field:wiki.wiki,write_date:0
msgid "Modification Date"
msgstr "Fecha de modificación"
#. module: wiki
#: view:wiki.groups:0
msgid "Configuration"
msgstr "Configuración"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values
#: model:ir.model,name:wiki.model_wiki_make_index
#: view:wiki.make.index:0
msgid "Create Index"
msgstr "Crear índice"
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!"
#. module: wiki
#: view:wiki.wiki:0
msgid "Group By..."
msgstr "Agrupar por..."
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
#: view:wiki.create.menu:0
#: view:wiki.groups:0
#: view:wiki.make.index:0
msgid "Create Menu"
msgstr "Crear menú"
#. module: wiki
#: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?"
msgstr "¿Es ésta una edición mayor?"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups
#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse
#: model:ir.model,name:wiki.model_wiki_groups
#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups
#: view:wiki.groups:0
msgid "Wiki Groups"
msgstr "Grupos Wiki"
#. module: wiki
#: view:wiki.wiki:0
msgid "Topic"
msgstr "Tema"
#. module: wiki
#: field:wiki.wiki.history,write_uid:0
msgid "Modify By"
msgstr "Modificado por"
#. module: wiki
#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981
#: field:wiki.wiki,toc:0
#, python-format
msgid "Table of Contents"
msgstr "Tabla de contenido"
#. module: wiki
#: view:wiki.groups:0
#: view:wiki.wiki.page.open:0
msgid "Open Wiki Page"
msgstr "Abrir página wiki"
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr "asistente abrir página"
#. module: wiki
#: view:wiki.create.menu:0
#: view:wiki.make.index:0
#: view:wiki.wiki.page.open:0
msgid "Cancel"
msgstr "Cancelar"
#. module: wiki
#: field:wizard.wiki.history.show_diff,file_path:0
msgid "Diff"
msgstr "Dif."
#. module: wiki
#: view:wiki.wiki:0
msgid "Need Review"
msgstr "Necesita revisión"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_review
msgid "Pages Waiting Review"
msgstr "Páginas esperando revisión"
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open
msgid "Search Page"
msgstr "Buscar página"
#~ msgid ""
#~ "The Object name must start with x_ and not contain any special character !"
#~ msgstr ""
#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
#~ "especial!"
#~ msgid "Wiki Groups Links"
#~ msgstr "Enlaces grupos wiki"
#~ msgid "Child Groups"
#~ msgstr "Grupos hijos"
#~ msgid "Wiki Configuration"
#~ msgstr "Configuración Wiki"
#~ msgid "Create a Menu"
#~ msgstr "Crear un menú"
#~ msgid "History Differance"
#~ msgstr "Diferencia historial"
#~ msgid "Group Home Page"
#~ msgstr "Página de inicio del grupo"
#~ msgid "Last Author"
#~ msgstr "Último autor"
#~ msgid "Differences"
#~ msgstr "Diferencias"
#~ msgid "Document Management"
#~ msgstr "Gestión de documentos"
#~ msgid "Invalid XML for View Architecture!"
#~ msgstr "¡XML inválido para la definición de la vista!"
#~ msgid "Parent Group"
#~ msgstr "Grupo padre"
#~ msgid "Wiki Differance"
#~ msgstr "Diferencia Wiki"
#, python-format
#~ msgid "No action found"
#~ msgstr "No se ha encontrado la acción"
#~ msgid "Modifications"
#~ msgstr "Modificaciones"
#~ msgid "History"
#~ msgstr "Historial"
#~ msgid "Tags"
#~ msgstr "Etiquetas"
#~ msgid "Invalid model name in the action definition."
#~ msgstr "Nombre de modelo no válido en la definición de acción."

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:11+0000\n"
"Last-Translator: Ahti Hinnov <sipelgas@gmail.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menüü"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Sisu"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Tiitel"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Menüü info"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Kuupäev"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Lehekülgi"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Ülemmenüü"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Loodud"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Kokkuvõte"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Menüü nimi"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Muutmise kuupäev"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Loo menüü"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Loobu"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Erinevus"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Finnish translation for openobject-addons
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:13+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\n"
"Language-Team: Finnish <fi@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Viimeisin tiedon lisääjä"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Tekijä"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Valikko"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Sivuhistoria"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Sisältö"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Ryhmittely.."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Otsikko"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Menun luonti velho"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Valikon tiedot"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Päivämäärä"
#. 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 "Ero"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Sivut"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Ylätason valikko"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Luotu"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Yhteenveto"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Valikon nimi"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Muokkauspäivä"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Luo valikko"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Peruuta"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Erot"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,258 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-18 23:39+0000\n"
"Last-Translator: Nicolas JEUDY <njeudy@tuxservices.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Catégorie"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Dernier contributeur"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Auteur"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Gestion documentaire de pages Web"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Historique de la page"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Contenu"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Grouper par ..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Modèle"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"Ceci sera utilisé comment contenu initial de toutes les nouvelles pages de "
"cette catégorie."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Titre"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Menu de création d'un wizard"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Type"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modifié par"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "ou"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Type de page"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Menu Information"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Historique du document"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Historique des pages"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Il n'y a aucun changement dans les révisions."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Date"
#. 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 "Différence"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Pages"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Catégories"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menu Parent"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Créé le"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"Vous devez sélectionner au minimum une et au maximum deux versions "
"d'historique"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Historique de la page"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Sommaire"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Créer des pages Web"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Historique du document"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nom du menu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Page"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Historique"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Date de modification"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Créer un menu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Contenu affiché"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Avertissement!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Annuler"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Comparer"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Type de document"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Enfant"

View File

@ -1,256 +0,0 @@
# translation of wiki-es.po to Galego
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
# Frco. Javier Rial Rodríguez <fjrial@cesga.es>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: wiki-es\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:12+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\n"
"Language-Team: Galego <g11n@mancomun.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menú"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Contido"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Título"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Información do menú"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Data"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Páxinas"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menú principal"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Creado o"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Resumo"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nome do menú"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Data de modificación"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Crear menú"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Diff"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,256 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:11+0000\n"
"Last-Translator: Goran Kliska <gkliska@gmail.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Kategorija"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Zadnji doprinos"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Izbornik"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Stranica dokumenata"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Povijest stranice"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Sadržaj"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Grupiraj po..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Predložak"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"ovo će biti korišteno kao predložak sadržaja za sve nove stranice u ovoj "
"kategoriji."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Naslov"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Wizard Create Menu"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tip"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Izmjenio"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "ili"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tip stranice"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informacije o izborniku"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Povijest stranica Dokumenata"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Povijest stranice"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Nema izmjena u revizijama"
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. 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 "Razlika"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Stranice"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Kategorije"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Nadređeni izbornik"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Datum kreiranja"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr "Morate odabrati minimum jednu ili maksimum dvije revizije!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Povijest stranica"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Sažetak"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Kreiraj web stranice"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Povijest dokumenata"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Naziv izbornika"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Stranica"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Povijest"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Datum promjene"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Kreiraj izbornik"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Prikazani sadržaj"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Upozorenje!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Odustani"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Razlika"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Vrsta dokumenta"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Podređeni"

View File

@ -1,257 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:16+0000\n"
"Last-Translator: Krisztian Eyssen <krisz@eyssen.hu>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Kategória"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Utolsó közreműködő"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Szerző"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menü"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Documentum oldal"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Oldal előzmény"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Tartalom"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Csoportosítás..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Sablon"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"ez mint tartalom sablon lesz használva az összes ilyen kategóriájú új "
"oldalhoz."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Pozíció"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Menü létrehozás varázsló"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Típus"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Által módosítva"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "vagy"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Oldal típus"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Menü infrormáció"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Dokumantum oldal előzmény"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Oldal előzmény"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Az előzményekben nem történt változtatás."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Dátum"
#. 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 "Különbség"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Oldalok"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Kategóriák"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Főmenü"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Létrehozás dátuma"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"Ki kell választani minimum egy vagy maximum kettő átvizsgálás előzményt."
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Oldal előzmény"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Összegzés"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Weboldalak létrehozása"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Dokumentumok előzménye"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Menü"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Oldal"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Előzmény"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Módosítás dátuma"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Menü létrehozása"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Tartalom megjelenítése"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Figyelem!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Mégsem"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Különbség"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Dokumentumtípus"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Alárendelt"

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:08+0000\n"
"Last-Translator: <>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,258 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-20 23:11+0000\n"
"Last-Translator: Sergio Corato <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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Categoria"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Ultimo collaboratore"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autore"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Pagina documento"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Cronologia pagina"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Contenuto"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Raggruppa per..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Modello"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"sarà usato come modello contenuto per tutte le nuove pagine di questa "
"categoria."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Titolo"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Wizard creazione menu"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tipo"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificato Da"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "o"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipo di pagina"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informazioni Menu"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Cronologia Pagina Documento"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Cronologia pagine"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Non ci sono modifiche nelle revisioni."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Data"
#. 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 "Differenze"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Pagine"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorie"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menu Superiore"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Creato il"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"E' necessario selezionare almeno una o massimo due revisioni della "
"cronologia!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Cronologia pagina"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Riepilogo"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Crea pagine web"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Cronologia documento"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nome Menu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Pagina"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Cronologia"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Data di Modifica"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Crea Menu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Contenuto Visualizzato"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Attenzione!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Cancella"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Differenze"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Tipo Documento"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Figlio"

View File

@ -1,255 +0,0 @@
# Japanese translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:11+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\n"
"Language-Team: Japanese <ja@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "最終貢献者"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "著者"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "メニュー"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "ページ履歴"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "コンテンツ"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "グループ化…"
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "タイトル"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "メニュー作成ウィザード"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "メニュー情報"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "日付"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr "差分"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "ページ"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "親メニュー"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "作成日"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "要約"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "メニュー名"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "変更日"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "メニューの作成"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "キャンセル"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "差分"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Korean translation for openobject-addons
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:14+0000\n"
"Last-Translator: CSro <choongsan@gmail.com>\n"
"Language-Team: Korean <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "저자"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "메뉴"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "컨텐트"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "제목"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "메뉴 정보"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "날짜"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "페이지"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "부모 메뉴"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "생성 날짜"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "요약"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "메뉴 이름"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "수정 날짜"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "메뉴 만들기"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "취소"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Diff"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
# giedrius <giedrius.slavinskas@gmail.com>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:14+0000\n"
"Last-Translator: Giedrius Slavinskas - inovera.lt <giedrius@inovera.lt>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
"Language: lt\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autorius"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Meniu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Turinys"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Antraštė"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Meniu informacija"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Data"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Puslapiai"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Bazinis meniu"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Sukurta"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Santrauka"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Meniu pavadinimas"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Modifikavimo data"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Sukurti meniu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Atšaukti"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Skirtumas"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Latvian translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:13+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\n"
"Language-Team: Latvian <lv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Pēdējais Papildinājs"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autors"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Izvēlne"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Lapas Vēsture"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Saturs"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Grupēt pēc..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Virsraksts"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Izvēlnes Veidošanas Veidnis"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Izvēlnes Informācija"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datums"
#. 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 "Atšķirības"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Lapas"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "VirsIzvēlne"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Izveidots"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Kopsavilkums"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Izvēlnes Nosaukums"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Izmaiņu Datums"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Izveidot Izvēlni"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Atcelt"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Atšķirības"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,258 +0,0 @@
# Macedonian translation for openobject-addons
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2013-03-01 17:55+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Macedonian <mk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Категорија"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Последен приложувач"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Автор"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Мени"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Страна на документ"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Историја на страна"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Содржина"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Групирај по..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Урнек"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"што ќе се користи како шаблон за содржината на сите нови страници од оваа "
"категорија"
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Титула"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tип"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Изменето од"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "или"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Тип на страница"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Мени Информации"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Историја на страна на документ"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Историја на страни"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Нема измени во ревизиите."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Датум"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr "Разлика"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Страници"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Категории"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Мени родител"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Креирано на"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"Треба да селектиарте минимум една или максимум две ревизии на историја!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Историја на страна"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Резиме"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Креирај веб страни"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Историја на документот"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Име на мени"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Страница"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Историја"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Датум на измена"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Креирај Мени"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Прикажана содржина"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Предупредување!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Откажи"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Разлика"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Тип документ"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Деца"

View File

@ -1,255 +0,0 @@
# Mongolian translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:13+0000\n"
"Last-Translator: ub121 <ubs121@gmail.com>\n"
"Language-Team: Mongolian <mn@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Ангилал"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Зохиогч"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Цэс"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Баримтын Хуудас"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Агуулга"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Загвар"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Гарчиг"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Хуудасны төрөл"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Цэсний мэдээлэл"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Баримтын Хуудасны Түүх"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Хуудсуудын Түүх"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Огноо"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Хуудсууд"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Толгой цэс"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Үүсгэсэн"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Хуудсын Түүх"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Хураангуй"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Веб хуудсууд үүсгэх"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Баримтын Түүх"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Цэсний нэр"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Зассан огноо"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Цэс үүсгэх"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Цуцлах"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Зөрүү"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Norwegian Bokmal translation for openobject-addons
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:14+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Siste forfatter"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Forfatter"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Meny"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Sidehistorikk"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Innhold"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Grupper etter..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Tittel"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Wizard Opprett meny"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Meny informasjon"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Dato"
#. 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 "Endringer"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Sider"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Overordnet meny"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Opprettet den"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Sammendrag"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Menynavn"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Dato for siste endring"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Opprett meny"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Avbryt"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Diff"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,257 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-11-25 13:05+0000\n"
"Last-Translator: Erwin van der Ploeg (Endian Solutions) <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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Categorie"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Laatste bijdrage"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Auteur"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Document pagina"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Pagina geschiedenis"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Inhoud"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Groepeer op..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Sjabloon"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"dit zal worden gebruikt als een inhoud sjabloon voor alle nieuwe pagina;s "
"van deze categorie."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Titel"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Assistent menu maken"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Soort"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Aangepast door"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "of"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Paginatype"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Menu informatie"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Document pagina historie"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Pagina historie"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Er zijn geen wijzigingen in de revisies."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. 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 "Verschil"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Pagina's"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorieën"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Hoofdmenu"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Aangemaakt op"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"U dient minimaal één en maximaal twee historie revisies te selecteren.!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Pagina historie"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Samenvatting"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Webpagina's aanmaken"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Documenthistorie"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Naam menu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Pagina"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Historie"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Wijzigingsdatum"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Menu maken"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Weergegeven inhoud"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Waarschuwing!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Annuleren"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Verschil"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Documenttype"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Onderliggende"

View File

@ -1,440 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-02-08 01:37+0100\n"
"PO-Revision-Date: 2009-04-10 10:01+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\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-02-09 06:46+0000\n"
"X-Generator: Launchpad (build 14763)\n"
#. module: wiki
#: field:wiki.groups,template:0
msgid "Wiki Template"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki
#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki
msgid "Wiki Pages"
msgstr ""
#. module: wiki
#: field:wiki.groups,method:0
msgid "Display Method"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0
msgid "Author"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open
#: view:wiki.wiki.page.open:0
msgid "Open Page"
msgstr ""
#. module: wiki
#: field:wiki.groups,menu_id:0
msgid "Menu"
msgstr ""
#. module: wiki
#: field:wiki.wiki,section:0
msgid "Section"
msgstr ""
#. module: wiki
#: help:wiki.wiki,toc:0
msgid "Indicates that this pages have a table of contents or not"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0
msgid "Wiki History"
msgstr ""
#. module: wiki
#: field:wiki.wiki,minor_edit:0
msgid "Minor edit"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,text_area:0
msgid "Content"
msgstr ""
#. module: wiki
#: field:wiki.wiki,child_ids:0
msgid "Child Pages"
msgstr ""
#. module: wiki
#: field:wiki.wiki,parent_id:0
msgid "Parent Page"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: wiki
#: field:wiki.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: wiki
#: code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "There is no section in this Page"
msgstr ""
#. module: wiki
#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0
msgid "Wiki Group"
msgstr ""
#. module: wiki
#: field:wiki.wiki,name:0
msgid "Title"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: wiki
#: field:wiki.wiki,history_id:0
msgid "History Lines"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0
msgid "Page Content"
msgstr ""
#. module: wiki
#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52
#, python-format
msgid "Warning !"
msgstr ""
#. module: wiki
#: code:addons/wiki/wiki.py:237
#, python-format
msgid "There are no changes in revisions"
msgstr ""
#. module: wiki
#: help:wiki.wiki,section:0
msgid "Use page section code like 1.2.1"
msgstr ""
#. module: wiki
#: field:wiki.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: wiki
#: field:wiki.groups,notes:0
msgid "Description"
msgstr ""
#. module: wiki
#: field:wiki.wiki,review:0
msgid "Needs Review"
msgstr ""
#. module: wiki
#: help:wiki.wiki,review:0
msgid ""
"Indicates that this page should be reviewed, raising the attention of other "
"contributors"
msgstr ""
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0
msgid "Menu Information"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history
msgid "Page History"
msgstr ""
#. module: wiki
#: selection:wiki.groups,method:0
msgid "Tree"
msgstr ""
#. module: wiki
#: view:wiki.groups:0
msgid "Page Template"
msgstr ""
#. module: wiki
#: field:wiki.wiki,tags:0
msgid "Keywords"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,help:wiki.action_wiki
msgid ""
"With Wiki Pages you can share ideas and questions with your coworkers. You "
"can create a new document that can be linked to one or several applications "
"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. "
"There is a basic wiki editing for text format."
msgstr ""
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "Warning"
msgstr ""
#. module: wiki
#: help:wiki.groups,home:0
msgid "Required to select home page if display method is Home Page"
msgstr ""
#. module: wiki
#: field:wiki.wiki.history,create_date:0
msgid "Date"
msgstr ""
#. module: wiki
#: view:wiki.make.index:0
msgid "Want to create a Index on Selected Pages ? "
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values
#: view:wizard.wiki.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: wiki
#: field:wiki.groups,page_ids:0
msgid "Pages"
msgstr ""
#. module: wiki
#: view:wiki.groups:0
msgid "Group Description"
msgstr ""
#. module: wiki
#: view:wiki.wiki.page.open:0
msgid "Want to open a wiki page? "
msgstr ""
#. module: wiki
#: field:wiki.groups,section:0
msgid "Make Section ?"
msgstr ""
#. module: wiki
#: field:wiki.wiki.history,text_area:0
msgid "Text area"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0
msgid "Meta Information"
msgstr ""
#. module: wiki
#: field:wiki.wiki,create_date:0
msgid "Created on"
msgstr ""
#. module: wiki
#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0
msgid "Notes"
msgstr ""
#. module: wiki
#: selection:wiki.groups,method:0
msgid "List"
msgstr ""
#. module: wiki
#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0
msgid "Summary"
msgstr ""
#. module: wiki
#: field:wiki.groups,create_date:0
msgid "Created Date"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_history
msgid "All Page Histories"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki
msgid "wiki.wiki"
msgstr ""
#. module: wiki
#: help:wiki.groups,method:0
msgid "Define the default behaviour of the menu created on this group"
msgstr ""
#. module: wiki
#: view:wizard.wiki.history.show_diff:0
msgid "Close"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff
msgid "wizard.wiki.history.show_diff"
msgstr ""
#. module: wiki
#: field:wiki.wiki.history,wiki_id:0
msgid "Wiki Id"
msgstr ""
#. module: wiki
#: field:wiki.groups,home:0 selection:wiki.groups,method:0
msgid "Home Page"
msgstr ""
#. module: wiki
#: help:wiki.wiki,parent_id:0
msgid "Allows you to link with the other page with in the current topic"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0
msgid "Modification Information"
msgstr ""
#. module: wiki
#: help:wiki.wiki,group_id:0
msgid "Topic, also called Wiki Group"
msgstr ""
#. module: wiki
#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0
msgid "Wiki"
msgstr ""
#. module: wiki
#: field:wiki.wiki,write_date:0
msgid "Modification Date"
msgstr ""
#. module: wiki
#: view:wiki.groups:0
msgid "Configuration"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index
#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values
#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0
msgid "Create Index"
msgstr ""
#. module: wiki
#: code:addons/wiki/wizard/wiki_show_diff.py:54
#, python-format
msgid "You need to select minimum 1 or maximum 2 history revision!"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0
msgid "Group By..."
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu
#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0
msgid "Create Menu"
msgstr ""
#. module: wiki
#: field:wiki.wiki.history,minor_edit:0
msgid "This is a major edit ?"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_groups
#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse
#: model:ir.model,name:wiki.model_wiki_groups
#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0
msgid "Wiki Groups"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0
msgid "Topic"
msgstr ""
#. module: wiki
#: field:wiki.wiki.history,write_uid:0
msgid "Modify By"
msgstr ""
#. module: wiki
#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981
#: field:wiki.wiki,toc:0
#, python-format
msgid "Table of Contents"
msgstr ""
#. module: wiki
#: view:wiki.groups:0 view:wiki.wiki.page.open:0
msgid "Open Wiki Page"
msgstr ""
#. module: wiki
#: model:ir.model,name:wiki.model_wiki_wiki_page_open
msgid "wiz open page"
msgstr ""
#. module: wiki
#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0
msgid "Cancel"
msgstr ""
#. module: wiki
#: field:wizard.wiki.history.show_diff,file_path:0
msgid "Diff"
msgstr ""
#. module: wiki
#: view:wiki.wiki:0
msgid "Need Review"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.action_wiki_review
msgid "Pages Waiting Review"
msgstr ""
#. module: wiki
#: model:ir.actions.act_window,name:wiki.act_wiki_group_open
msgid "Search Page"
msgstr ""
#~ msgid ""
#~ "The Object name must start with x_ and not contain any special character !"
#~ msgstr ""
#~ "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !"

View File

@ -1,256 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-17 10:25+0000\n"
"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@openglobe.pl>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Kategoria"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Ostatni kontrybutor"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Strona dokumentu"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Historia strony"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Zawartość"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Grupuj wg..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Szablon"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"które będzie stosowane jako szablon zawartości dla nowych stron tej "
"kategorii."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Tytuł"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Typ"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Zmodyfikowane przez"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "lub"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Typ strony"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informacja o menu"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Historia strony dokumentu"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Historia strony"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Brak zmian w wersjach"
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Data"
#. 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 "Różnica"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Strony"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Kategorie"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menu nadrzędne"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Utworzono"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr "Musisz wybrać minimum jedną a maksymalnie dwie wersje historii !"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Historia strony"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Podsumowanie"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Twórz strony web"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Historia Dokumentu"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nazwa menu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Strona"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Historia"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Data modyfikacji"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Utwórz menu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Wyświetlana zawartość"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Ostrzeżenie !"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Anuluj"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Różnice"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Typ dokumentu"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Podrzędne"

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-12 16:52+0000\n"
"Last-Translator: Rui Franco (multibase.pt) <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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Categoria"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Último contribuinte"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Página do documento"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Histórico da página"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Conteúdo"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Agrupar por..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Modelo"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr "que será usado como modelo para qualquer página desta categoria"
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Título"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Assitente de criação de menu"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tipo"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificado por"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "ou"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipo de página"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informação do Menu"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Não há alterações de versão"
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Data"
#. 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 "Diferença"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Páginas"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorias"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menu do Ascendente"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Criado em"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Resumo"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Cria páginas na internet"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Histórico de documentos"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nome do Menu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Página"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Histórico"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Data de Modificação"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Criar Menu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Aviso!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Diferenças"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Tipo de documento"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,256 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-04 15:32+0000\n"
"Last-Translator: Cristiano Korndörfer <codigo.aberto@dorfer.com.br>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Categoria"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Último Contribuidor(a)"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Página do Documento"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Histórico da Página"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Conteúdo"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Agrupar Por..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Modelo"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"isto será utilizado como um modelo de conteúdo para todas as páginas desta "
"categoria."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Título"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Assistente Para Criar Menu"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tipo"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificado Por"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "ou"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipo de página"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informação do Menu"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Histórico da Página de Documento"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Histórico das páginas"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Não há mudanças nas revisões."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Data"
#. 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 "Diferença"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Páginas"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorias"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Menu Superior"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Criado em"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr "Você deve selecionar de uma a duas revisões de histórico!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Histórico da página"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Resumo"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Criar páginas web"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Histórico de Documentos"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nome do Menu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Página"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Histórico"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Data de Modificação"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Criar Menu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Conteúdo Exibido"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Atenção!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Cancelar"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Diferença"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Tipo de Documento"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Filhos"

View File

@ -1,257 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:12+0000\n"
"Last-Translator: filsys <office@filsystem.ro>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Categorie"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Ultimul colaborator"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Meniu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Pagina Documentului"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Istoric pagină"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Conţinut"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Grupează după..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Sablon"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"care va fi folosit ca un sablon de continut pentru toate paginile noi din "
"aceasta categorie."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Titlu"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Wizard Creează meniul"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tip"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.pagina.istoric.arata_dif"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Modificat de"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "sau"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Tipul de pagina"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informaţii meniu"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Istoric Pagini Documente"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Istoric pagini"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Nu exista modificari in revizuiri."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Dată"
#. 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 "Diferenţă"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Pagini"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Categorii"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Meniu principal (părinte)"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Creat in"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
"Trebuie sa selectati minim unul sau maxim doua istorice ale revizuirilor!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Istoric pagina"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Rezumat"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Creeaza pagini web"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Istoric Documente"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Nume Meniu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Pagina"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Istoric"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Data modificării"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Creează meniu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Continut Afisat"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Avertizare!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Anulează"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Diferit"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Tipul documentului"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Subordonati"

View File

@ -1,256 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-28 12:51+0000\n"
"Last-Translator: Chertykov Denis <chertykov@gmail.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Категория"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Последний корректор"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Автор"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Меню"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Страница документа"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "История страницы"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Содержание"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Группировать по .."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Шаблон"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"будет использоваться как шаблон содержимого для всех новых страниц этой "
"категории."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Заголовок"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Помощник создания меню"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Тип"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Изменено"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "или"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Тип страниц"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Информация меню"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "История страницы документа"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "История страницы"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Нет изменений"
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Дата"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr "Различие"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Страницы"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Категории"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Родительское меню"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Создан"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr "Вы должны выбрать одну или две версии в истории!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "История страницы"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Итого"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Создание веб-страниц"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "История документа"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Название меню"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Страница"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "История"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Дата изменения"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Создать меню"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Отображаемое содержимое"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Внимание!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Отмена"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Различие"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Тип документа"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Потомки"

View File

@ -1,255 +0,0 @@
# Slovak translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:13+0000\n"
"Last-Translator: Peter Kohaut <peter.kohaut@gmail.com>\n"
"Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Posledný prispievateľ"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menu"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "História stránky"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Obsah"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Zoskupiť podľa..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Názov"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Sprievodca vytvorením ponuky"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informácie menu"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Dátum"
#. 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 "Rozdiel"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Stránky"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Nadradené menu"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Vytvorené"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Zhrnutie"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Názov menu"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Dátum zmeny"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Vytvoriť menu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Zrušiť"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Rozdiel"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:14+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Avtor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Meni"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Vsebina"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Naslov"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Informacije o meniju"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Strani"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Nadmenu"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Izdelano"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Povzetek"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Naziv menuja"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Datum spremembe"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Ustvari menu"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Prekliči"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Razlika"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Albanian translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Albanian <sq@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Serbian translation for openobject-addons
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:13+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\n"
"Language-Team: Serbian <sr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Meni"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Sadržaj"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Naslov"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Meni Informacije"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Strane"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Roditeljski Meni"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Kreiran"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Sumarno"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Naziv Menija"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Datum Promene"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Kreiraj Meni"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Otkazati"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Razlika"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Serbian translation for openobject-addons
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:14+0000\n"
"Last-Translator: qdp (OpenERP) <qdp-launchpad@tinyerp.com>\n"
"Language-Team: Serbian <sr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Autor"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Meni"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Sadržaj"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Naslov"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Meni Informacije"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Strane"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Roditeljski Meni"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Kreiran"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Sumarno"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Naziv Menija"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Datum Promene"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Kreiraj Meni"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Otkazati"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Razlika"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.14\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:12+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Författare"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Meny"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Innehåll"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Rubrik"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Menyinformation"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Datum"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Sidor"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Huvudmeny"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Skapad den"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Sammanfattning"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Menynamn"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Ändringsdatum"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Skapa meny"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Avbryt"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Skillnad"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:08+0000\n"
"Last-Translator: <>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr ""
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr ""
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr ""
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr ""
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr ""
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:12+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "Kategori"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Son Katkı koyan"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Yazar"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Menü"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr "Belge Sayfası"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Sayfa Geçmişi"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "İçerik"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "Gruplandır..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "Şablon"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
"bu kategorideki tüm yeni sayfalar için içerik şablonu olarak kullanılacaktır."
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Başlık"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "Menü Oluşturma Sihirbazı"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "Tür"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "Değiştiren"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr "ya da"
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr "Sayfa türü"
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Menü bilgileri"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr "Belge Sayfa Geçmişi"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr "Sayfa geçmişi"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr "Düzeltmelerde hiç değişiklik yoktur."
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Tarih"
#. 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 "Fark"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Sayfalar"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "Kategoriler"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Ana Menü"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Oluşturulma"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr "Enaz bir ya da ençok 2 geçmiş düzeltmesi seçmelisiniz!"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr "Sayfa geçmişi"
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Özet"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "Web sayfaları oluşturun"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr "Belge Geçmişi"
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Menü Adı"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr "Sayfa"
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "Geçmiş"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Değiştirilme Tarihi"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Menü Oluştur"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "Görüntülenen İçerik"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr "Uyarı!"
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "İptal"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Fark"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr "Belge Türü"
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr "Alt"

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:11+0000\n"
"Last-Translator: Eugene Babiy <eugene.babiy@gmail.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Автор"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Меню"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Вміст"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Заголовок"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Інформація Меню"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Дата"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Сторінки"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Батьківське Меню"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Створено"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "Підсумок"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Назва Меню"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "Дата Зміни"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "Створити Меню"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "Скасувати"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "Відмінність"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,255 +0,0 @@
# Vietnamese translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-13 12:09+0000\n"
"Last-Translator: Antony Lesuisse (OpenERP) <al@openerp.com>\n"
"Language-Team: Vietnamese <vi@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "Người đóng góp cuối"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "Tác giả"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "Trình đơn"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "Lịch sử Trang"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "Nội dung"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "Tiêu đề"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr ""
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "Thông tin Trình đơn"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "Ngày"
#. 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 "Khác biệt"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "Các trang"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "Trình đơn cha"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "Tạo trên"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "Tên Trình đơn"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr ""
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr ""
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-12-08 13:10+0000\n"
"Last-Translator: 盈通 ccdos <ccdos@163.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr "类别"
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "最近的贡献者"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "作者"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "菜单"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "页面编辑日志"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "内容"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "分组..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr "模版"
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "标题"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "向导创建菜单"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "类型"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr ""
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr "修改者"
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "菜单信息"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "日期"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr "差异"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "页面"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr "分类"
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "上级菜单"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "创建在"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "摘要"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr "创建网页"
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "菜单名"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr "历史"
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "修改日期"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "创建菜单"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr "显示内容"
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "取消"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "差异"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

@ -1,254 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * wiki
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-12-21 17:05+0000\n"
"PO-Revision-Date: 2012-08-30 09:36+0000\n"
"Last-Translator: Bonnie Duan <bonnie.duan@cenoq.com>\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: 2013-03-16 05:51+0000\n"
"X-Generator: Launchpad (build 16532)\n"
#. module: document_page
#: view:document.page:0
#: field:document.page,parent_id:0
#: selection:document.page,type:0
#: model:ir.actions.act_window,name:document_page.action_category
msgid "Category"
msgstr ""
#. module: document_page
#: view:document.page:0
#: field:document.page,write_uid:0
msgid "Last Contributor"
msgstr "最後的貢獻者"
#. module: document_page
#: view:document.page:0
#: field:document.page,create_uid:0
msgid "Author"
msgstr "作者"
#. module: document_page
#: field:document.page,menu_id:0
msgid "Menu"
msgstr "選單"
#. module: document_page
#: view:document.page:0
#: model:ir.model,name:document_page.model_document_page
msgid "Document Page"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_related_page_history
msgid "Page History"
msgstr "頁面歷史記錄"
#. module: document_page
#: view:document.page:0
#: field:document.page,content:0
#: selection:document.page,type:0
#: field:document.page.history,content:0
msgid "Content"
msgstr "內容"
#. module: document_page
#: view:document.page:0
msgid "Group By..."
msgstr "分類方式..."
#. module: document_page
#: view:document.page:0
msgid "Template"
msgstr ""
#. module: document_page
#: view:document.page:0
msgid ""
"that will be used as a content template for all new page of this category."
msgstr ""
#. module: document_page
#: field:document.page,name:0
msgid "Title"
msgstr "標題"
#. module: document_page
#: model:ir.model,name:document_page.model_document_page_create_menu
msgid "Wizard Create Menu"
msgstr "嚮導創建選單"
#. module: document_page
#: field:document.page,type:0
msgid "Type"
msgstr "類型"
#. module: document_page
#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff
msgid "wizard.document.page.history.show_diff"
msgstr "wizard.document.page.history.show_diff"
#. module: document_page
#: field:document.page.history,create_uid:0
msgid "Modified By"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "or"
msgstr ""
#. module: document_page
#: help:document.page,type:0
msgid "Page type"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
msgid "Menu Information"
msgstr "選單資訊"
#. module: document_page
#: view:document.page.history:0
#: model:ir.model,name:document_page.model_document_page_history
msgid "Document Page History"
msgstr ""
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_page_history
msgid "Pages history"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#, python-format
msgid "There are no changes in revisions."
msgstr ""
#. module: document_page
#: field:document.page.history,create_date:0
msgid "Date"
msgstr "日期"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff
#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values
#: view:wizard.document.page.history.show_diff:0
msgid "Difference"
msgstr "差異"
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_page
#: model:ir.ui.menu,name:document_page.menu_page
#: model:ir.ui.menu,name:document_page.menu_wiki
msgid "Pages"
msgstr "頁面"
#. module: document_page
#: model:ir.ui.menu,name:document_page.menu_category
msgid "Categories"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_parent_id:0
msgid "Parent Menu"
msgstr "上級選單"
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
msgstr "建立於"
#. module: document_page
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "You need to select minimum one or maximum two history revisions!"
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,name:document_page.action_history
msgid "Page history"
msgstr ""
#. module: document_page
#: field:document.page.history,summary:0
msgid "Summary"
msgstr "摘要"
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
msgstr ""
#. module: document_page
#: field:document.page.create.menu,menu_name:0
msgid "Menu Name"
msgstr "選單名稱"
#. module: document_page
#: field:document.page.history,page_id:0
msgid "Page"
msgstr ""
#. module: document_page
#: field:document.page,history_ids:0
msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr "修改日期"
#. module: document_page
#: view:document.page.create.menu:0
#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu
#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu
msgid "Create Menu"
msgstr "建立選單"
#. module: document_page
#: field:document.page,display_content:0
msgid "Displayed Content"
msgstr ""
#. module: document_page
#: code:addons/document_page/document_page.py:129
#: code:addons/document_page/wizard/document_page_show_diff.py:50
#, python-format
msgid "Warning!"
msgstr ""
#. module: document_page
#: view:document.page.create.menu:0
#: view:wizard.document.page.history.show_diff:0
msgid "Cancel"
msgstr "刪除"
#. module: document_page
#: field:wizard.document.page.history.show_diff,diff:0
msgid "Diff"
msgstr "差異"
#. module: document_page
#: view:document.page:0
msgid "Document Type"
msgstr ""
#. module: document_page
#: field:document.page,child_ids:0
msgid "Children"
msgstr ""

View File

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

View File

@ -1,4 +0,0 @@
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,document.page,model_document_page,base.group_user,1,1,1,1
document_page_history,document.page.history,model_document_page_history,base.group_user,1,0,1,0
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 document.page model_document_page base.group_user 1 1 1 1
4 document_page_history document.page.history model_document_page_history base.group_user 1 0 1 0

View File

@ -1,12 +0,0 @@
.oe_form_editable .oe_document_page {
display: none;
}
table.diff {font-family:Courier; border:medium;}
.diff_header {background-color:#e0e0e0}
td.diff_header {text-align:right}
.diff_next {background-color:#c0c0c0}
.diff_add {background-color:#aaffaa}
.diff_chg {background-color:#ffff77}
.diff_sub {background-color:#ffaaaa}

View File

@ -1,54 +0,0 @@
-
In order to test the document_page in OpenERP, I create a new page to category demo_category1
-
!record {model: document.page, id: test_page0}:
name: Test Page0
parent_id: demo_category1
content: 'Test content
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.'
-
I check the category index contains my page.
-
!python {model: document.page}: |
res = self.read(cr, uid, [ref('demo_category1')], ['display_content'])
assert res[0]['display_content'].find('Test Page') > 1
-
!record {model: document.page, id: test_page0}:
content: 'Test updated content
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, [('page_id', '=', ref("test_page0"))])
model.get_diff(cr, uid, {'active_ids': ids[:] })
-
I click the "create menu" link and i fill the form.
-
!record {model: document.page.create.menu, id: test_create_menu0}:
menu_name: Wiki Test menu
menu_parent_id: base.menu_base_partner
-
I create a Menu by clicking on "create menu"
-
!python {model: document.page.create.menu}: |
ids = [ref("test_create_menu0")]
context['active_id'] = ref('test_page0')
self.document_page_menu_create(cr, uid, ids, context)

View File

@ -25,8 +25,6 @@ class knowledge_config_settings(osv.osv_memory):
_name = 'knowledge.config.settings'
_inherit = 'res.config.settings'
_columns = {
'module_document_page': fields.boolean('Create static web pages',
help="""This installs the module document_page."""),
'module_document': fields.boolean('Manage documents',
help="""This is a complete document management system, with: user authentication,
full document search (but pptx and docx are not supported), and a document dashboard.

View File

@ -28,10 +28,6 @@
<field name="module_document_webdav" class="oe_inline"/>
<label for="module_document_webdav"/>
</div>
<div>
<field name="module_document_page" class="oe_inline"/>
<label for="module_document_page"/>
</div>
</div>
</group>
</form>

View File

@ -11,7 +11,6 @@ access_mail_notification_all,mail.notification.all,model_mail_notification,,1,0,
access_mail_notification_user,mail.notification.user,model_mail_notification,base.group_user,1,1,1,0
access_mail_notification_system,mail.notification.system,model_mail_notification,base.group_system,1,1,1,1
access_mail_group_all,mail.group.all,model_mail_group,,1,0,0,0
access_mail_group_public,mail.group.public,model_mail_group,base.group_public,1,0,0,0
access_mail_group_user,mail.group.user,model_mail_group,base.group_user,1,1,1,1
access_mail_alias_all,mail.alias.all,model_mail_alias,,1,0,0,0
access_mail_alias_user,mail.alias.user,model_mail_alias,base.group_user,1,1,1,0
@ -20,4 +19,3 @@ access_mail_message_subtype_all,mail.message.subtype.all,model_mail_message_subt
access_mail_message_subtype_system,mail.message.subtype.system,model_mail_message_subtype,base.group_system,1,1,1,1
access_mail_thread_all,mail.thread.all,model_mail_thread,,1,1,1,1
access_publisher_warranty_contract_all,publisher.warranty.contract.all,model_publisher_warranty_contract,,1,1,1,1
access_mail_message_public,mail.message.public,mail.model_mail_message,base.group_public,1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
11 access_mail_notification_user mail.notification.user model_mail_notification base.group_user 1 1 1 0
12 access_mail_notification_system mail.notification.system model_mail_notification base.group_system 1 1 1 1
13 access_mail_group_all mail.group.all model_mail_group 1 0 0 0
access_mail_group_public mail.group.public model_mail_group base.group_public 1 0 0 0
14 access_mail_group_user mail.group.user model_mail_group base.group_user 1 1 1 1
15 access_mail_alias_all mail.alias.all model_mail_alias 1 0 0 0
16 access_mail_alias_user mail.alias.user model_mail_alias base.group_user 1 1 1 0
19 access_mail_message_subtype_system mail.message.subtype.system model_mail_message_subtype base.group_system 1 1 1 1
20 access_mail_thread_all mail.thread.all model_mail_thread 1 1 1 1
21 access_publisher_warranty_contract_all publisher.warranty.contract.all model_publisher_warranty_contract 1 1 1 1
access_mail_message_public mail.message.public mail.model_mail_message base.group_public 1 0 0 0

View File

@ -2,7 +2,7 @@
##############################################################################
#
# OpenERP, Open Source Business Applications
# Copyright (c) 2012-TODAY OpenERP S.A. <http://openerp.com>
# Copyright (c) 20123TODAY OpenERP S.A. <http://www.openerp.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as

View File

@ -271,4 +271,12 @@ class Website(openerp.addons.web.controllers.main.Home):
def kanban(self, **post):
return request.website.kanban_col(**post)
@website.route(['/robots.txt'], type='http', auth="public")
def robots(self):
return request.website.render('website.robots', {'url_root': request.httprequest.url_root})
@website.route(['/sitemap.xml'], type='http', auth="public")
def sitemap(self):
return request.website.render('website.sitemap', {'pages': request.website.list_pages()})
# vim:expandtab:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -236,12 +236,8 @@
this.rte = new website.RTE(this);
this.rte.on('change', this, this.proxy('rte_changed'));
var instanceReady = false;
this.rte.on('instanceReady', this, function () {
clearTimeout(instanceReady);
instanceReady = setTimeout(function () {
self.trigger('rte:ready');
}, 0);
this.rte.on('rte:ready', this, function () {
self.trigger('rte:ready');
});
return $.when(
@ -337,6 +333,8 @@
root.contentEditable = false;
self.setup_editables(root);
self.trigger('rte:ready');
});
},
@ -408,6 +406,9 @@
allowedContent: true,
// Don't insert paragraphs around content in e.g. <li>
autoParagraph: false,
// Don't automatically add &nbsp; or <br> in empty block-level
// elements when edition starts
fillEmptyBlocks: false,
filebrowserImageUploadUrl: "/website/attach",
// Support for sharedSpaces in 4.x
extraPlugins: 'sharedspace,customdialogs,tablebutton,oeref',
@ -648,7 +649,7 @@
return openerp.jsonRpc('/web/dataset/call_kw', 'call', {
model: 'website',
method: 'list_pages',
args: [],
args: [null],
kwargs: {
context: website.get_context()
},

View File

@ -281,13 +281,13 @@
return $('body').children().not('.js_seo_configuration').text();
},
isInBody: function (text) {
return new RegExp(text, "gi").test(this.bodyText());
return new RegExp("\\b"+text+"\\b", "gi").test(this.bodyText());
},
isInTitle: function (text) {
return new RegExp(text, "gi").test(this.title());
return new RegExp("\\b"+text+"\\b", "gi").test(this.title());
},
isInDescription: function (text) {
return new RegExp(text, "gi").test(this.description());
return new RegExp("\\b"+text+"\\b", "gi").test(this.description());
},
});

View File

@ -194,7 +194,7 @@
<div class='oe_snippet_class'>dark</div>
</div>
<div t-name="website.snippets.well" data-snippet-id='well' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote'>
<div t-name="website.snippets.well" data-snippet-id='well' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote, div'>
<div class='oe_snippet_thumbnail'>Well</div>
<div class="oe_snippet_body well">
Manage your sales funnel with no effort with OpenERP CRM. Attract
@ -203,7 +203,7 @@
</div>
</div>
<div t-name="website.snippets.quote" data-snippet-id='quote' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote'>
<div t-name="website.snippets.quote" data-snippet-id='quote' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote, div'>
<div class='oe_snippet_thumbnail'>Quote</div>
<blockquote class="oe_snippet_body">
<p>
@ -214,7 +214,7 @@
</blockquote>
</div>
<div t-name="website.snippets.panel" data-snippet-id='panel' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote'>
<div t-name="website.snippets.panel" data-snippet-id='panel' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote, div'>
<div class='oe_snippet_thumbnail'>Panel</div>
<div class="oe_snippet_body panel panel-default">
<div class="panel-heading">
@ -234,12 +234,6 @@
<div class='oe_snippet_thumbnail' style='background-image:radial-gradient(red,orange,yellow,green,blue);'>Surprise!</div>
</div>
<div t-name="website.snippets.description" data-snippet-id='description' data-category='content' data-selector-siblings='p, h1, h2, h3,div,,span, blockquote'>
<div class='oe_snippet_thumbnail'>Description</div>
<div class="oe_snippet_body">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
</div>
<div t-name="website.snippets.text-image" data-snippet-id='text-image' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
<div class='oe_snippet_thumbnail'>
<span style="position: absolute; top: 50px; left: 5px;">Text-Image</span>

View File

@ -70,8 +70,11 @@ class view(osv.osv):
column_type = type_override or type(column)
if issubclass(column_type, fields.html):
# FIXME: multiple children?
return html.tostring(el[0])
content = []
if el.text: content.append(el.text)
content.extend(html.tostring(child)
for child in el.iterchildren(tag=etree.Element))
return '\n'.join(content)
elif issubclass(column_type, fields.integer):
return int(el.text_content())
elif issubclass(column_type, fields.float):
@ -80,7 +83,11 @@ class view(osv.osv):
fields.date, fields.datetime)):
return el.text_content()
# TODO: fields.selection
# TODO: fields.many2one
elif issubclass(column_type, fields.many2one):
matches = self.pool[column._obj].name_search(
cr, uid, name=el.text_content().strip(), context=context)
# FIXME: more than one match, error reporting
return matches[0][0]
elif issubclass(column_type, fields.function):
# FIXME: special-case selection as in get_pg_type?
return self.convert_embedded_field(
@ -97,7 +104,7 @@ class view(osv.osv):
field = el.get('data-oe-field')
column = Model._all_columns[field].column
Model.write(cr, uid, int(el.get('data-oe-id')), {
Model.write(cr, uid, [int(el.get('data-oe-id'))], {
field: self.convert_embedded_field(cr, uid, el, column, context=context)
}, context=context)

View File

@ -386,5 +386,17 @@
</tbody>
</table>
</template>
<template id="robots">
# robotstxt.org/
User-agent: *
Sitemap: <t t-esc="url_root"/>sitemap.xml
</template>
<template id="sitemap">
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<t t-foreach="pages" t-as="page">
<url t-esc="page['url']"/>
</t>
</urlset>
</template>
</data>
</openerp>

View File

@ -172,7 +172,7 @@ class website(osv.osv):
]
}
def list_pages(self, cr, uid, context=None):
def list_pages(self, cr, uid, ids, context=None):
""" Available pages in the website/CMS. This is mostly used for links
generation and can be overridden by modules setting up new HTML
controllers for dynamic pages (e.g. blog).

View File

@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@ -15,11 +15,11 @@
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import document_page
import controllers
import website_blog
import res_config
import wizard
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -2,7 +2,7 @@
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@ -20,29 +20,35 @@
##############################################################################
{
'name': 'Document Page',
'version': '1.0.1',
'category': 'Knowledge Management',
'name': 'Blogs',
'category': 'Website',
'summary': 'News, Blogs, Announces, Discussions',
'version': '1.0',
'description': """
Pages
=====
Web pages
""",
'author': ['OpenERP SA'],
'website': 'http://www.openerp.com/',
'depends': ['knowledge'],
OpenERP Blog
============
""",
'author': 'OpenERP SA',
'depends': ['knowledge', 'website_mail'],
'data': [
'wizard/document_page_create_menu_view.xml',
'website_blog_data.xml',
'views/website_blog_classic.xml',
'views/website_blog_templates.xml',
'views/res_config.xml',
# 'wizard/document_page_create_menu_view.xml',
'wizard/document_page_show_diff_view.xml',
'document_page_view.xml',
'security/document_page_security.xml',
'security/ir.model.access.csv',
'security/website_mail.xml',
],
'demo': [
'website_blog_demo.xml'
],
'test': [
'test/document_page_test00.yml'
],
'qweb': [
'static/src/xml/*.xml'
],
'demo': ['document_page_demo.xml'],
'test': ['test/document_page_test00.yml'],
'installable': True,
'auto_install': False,
'images': [],
'css' : ['static/src/css/document_page.css'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1 @@
import main

View File

@ -0,0 +1,200 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.addons.web import http
from openerp.addons.web.http import request
from openerp.addons.website import website
from openerp.tools.translate import _
from openerp.tools.safe_eval import safe_eval
import simplejson
import werkzeug
class website_mail(http.Controller):
_category_post_per_page = 2
_post_comment_per_page = 2
@website.route([
'/blog/',
'/blog/<int:category_id>/',
'/blog/<int:category_id>/<int:blog_post_id>/',
'/blog/<int:category_id>/page/<int:page>/',
'/blog/<int:category_id>/<int:blog_post_id>/page/<int:page>/',
'/blog/tag/',
'/blog/tag/<int:tag_id>/',
], type='http', auth="public")
def blog(self, category_id=None, blog_post_id=None, tag_id=None, page=1, **post):
""" Prepare all values to display the blog.
:param integer category_id: id of the category currently browsed.
:param integer tag_id: id of the tag that is currently used to filter
blog posts
:param integer blog_post_id: ID of the blog post currently browsed. If not
set, the user is browsing the category and
a post pager is calculated. If set the user
is reading the blog post and a comments pager
is calculated.
:param integer page: current page of the pager. Can be the category or
post pager.
:param dict post: kwargs, may contain
- 'unable_editor': editor control
:return dict values: values for the templates, containing
- 'blog_post': browse of the current post, if blog_post_id
- 'blog_posts': list of browse records that are the posts to display
in a given category, if not blog_post_id
- 'category': browse of the current category, if category_id
- 'categories': list of browse records of categories
- 'pager': the pager to display, posts pager in a category or comments
pager in a blog post
- 'tag': current tag, if tag_id
- 'nav_list': a dict [year][month] for archives navigation
"""
cr, uid, context = request.cr, request.uid, request.context
blog_post_obj = request.registry['blog.post']
tag_obj = request.registry['blog.tag']
category_obj = request.registry['blog.category']
tag = None
category = None
blog_post = None
blog_posts = None
pager = None
nav = {}
category_ids = category_obj.search(cr, uid, [], context=context)
categories = category_obj.browse(cr, uid, category_ids, context=context)
if tag_id:
tag = tag_obj.browse(cr, uid, tag_id, context=context)
if category_id:
category = category_obj.browse(cr, uid, category_id, context=context)
if category and blog_post_id:
blog_post = blog_post_obj.browse(cr, uid, blog_post_id, context=context)
blog_message_ids = blog_post.website_message_ids
else:
if category and tag:
blog_posts = [cat_post for cat_post in category.blog_post_ids
if tag_id in [post_tag.id for post_tag in cat_post.tag_ids]]
elif category:
blog_posts = category.blog_post_ids
elif tag:
blog_posts = tag.blog_post_ids
if blog_posts:
pager = request.website.pager(
url="/blog/%s/" % category_id,
total=len(blog_posts),
page=page,
step=self._category_post_per_page,
scope=7
)
pager_begin = (page - 1) * self._category_post_per_page
pager_end = page * self._category_post_per_page
blog_posts = blog_posts[pager_begin:pager_end]
if blog_post:
pager = request.website.pager(
url="/blog/%s/%s/" % (category_id, blog_post_id),
total=len(blog_message_ids),
page=page,
step=self._post_comment_per_page,
scope=7
)
pager_begin = (page - 1) * self._post_comment_per_page
pager_end = page * self._post_comment_per_page
blog_post.website_message_ids = blog_post.website_message_ids[pager_begin:pager_end]
for group in blog_post_obj.read_group(cr, uid, [], ['name', 'create_date'], groupby="create_date", orderby="create_date asc", context=context):
year = group['create_date'].split(" ")[1]
if not year in nav:
nav[year] = {'name': year, 'create_date_count': 0, 'months': []}
nav[year]['create_date_count'] += group['create_date_count']
nav[year]['months'].append(group)
values = {
'categories': categories,
'category': category,
'tag': tag,
'blog_post': blog_post,
'blog_posts': blog_posts,
'pager': pager,
'nav_list': nav,
'unable_editor': post.get('unable_editor')
}
return request.website.render("website_blog.index", values)
@website.route(['/blog/nav'], type='http', auth="public")
def nav(self, **post):
cr, uid, context = request.cr, request.uid, request.context
blog_post_ids = request.registry['blog.post'].search(
cr, uid, safe_eval(post.get('domain')),
order="create_date asc",
limit=None,
context=context
)
blog_post_data = [
{
'id': blog_post.id,
'name': blog_post.name,
'website_published': blog_post.website_published,
'category_id': blog_post.category_id and blog_post.category_id.id or False,
}
for blog_post in request.registry['blog.post'].browse(cr, uid, blog_post_ids, context=context)
]
return simplejson.dumps(blog_post_data)
@website.route(['/blog/<int:category_id>/<int:blog_post_id>/post'], type='http', auth="public")
def blog_comment(self, category_id=None, blog_post_id=None, **post):
cr, uid, context = request.cr, request.uid, request.context
url = request.httprequest.host_url
request.session.body = post.get('body')
if request.context['is_public_user']: # purpose of this ?
return '%s/admin#action=redirect&url=%s/blog/%s/%s/post' % (url, url, category_id, blog_post_id)
if request.session.get('body') and blog_post_id:
request.registry['blog.post'].message_post(
cr, uid, blog_post_id,
body=request.session.body,
type='comment',
subtype='mt_comment',
context=dict(context, mail_create_nosubcribe=True))
request.session.body = False
return werkzeug.utils.redirect("/blog/%s/%s/?unable_editor=1" % (category_id, blog_post_id))
@website.route(['/blog/<int:category_id>/new'], type='http', auth="public")
def create_blog_post(self, category_id=None, **post):
cr, uid, context = request.cr, request.uid, request.context
create_context = dict(context, mail_create_nosubscribe=True)
blog_post_id = request.registry['blog.post'].create(
request.cr, request.uid, {
'category_id': category_id,
'name': _("Blog title"),
'content': '',
'website_published': False,
}, context=create_context)
return werkzeug.utils.redirect("/blog/%s/%s/?unable_editor=1" % (category_id, blog_post_id))

View File

@ -0,0 +1,9 @@
.. _changelog:
Changelog
=========
`trunk (saas-3)`
----------------
- created ``website_blog`` menu, build on defunct document_page module.

View File

@ -0,0 +1,10 @@
Blog Module documentation topics
''''''''''''''''''''''''''''''''
Changelog
'''''''''
.. toctree::
:maxdepth: 1
changelog.rst

View File

@ -0,0 +1,43 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.osv import osv, fields
class mail_message(osv.osv):
_inherit = "mail.message"
_columns = {
'website_published': fields.boolean('Publish', help="Publish on the website as a blog"),
}
class mail_group(osv.Model):
_inherit = 'mail.group'
def get_domain_public_blog(self, cr, uid, context=None):
mail_group_ids = self.search(cr, uid, [('public', '=', 'public')], context=context)
return [ ("type", "in", ['comment']),
("parent_id", "=", False),
("model", "=", 'mail.group'), ("res_id", "in", mail_group_ids)]
def get_public_message_ids(self, cr, uid, domain=None, order="create_date desc", limit=None, offset=0, context=None):
domain += self.get_domain_public_blog(cr, uid, context=context)
return self.pool.get('mail.message').search(cr, uid, domain, order=order, limit=limit, offset=offset, context=context)

View File

@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.osv import fields, osv
class website_config_settings(osv.osv_memory):
_inherit = 'website.config.settings'
_columns = {
'group_website_mail_reply': fields.boolean(
'Visitors can reply on blogs',
implied_group='website_blog.group_website_mail_reply'
),
}

View File

@ -0,0 +1,5 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
blog_category_all,blog.category,model_blog_category,,1,0,0,0
blog_post_all,blog.post,model_blog_post,,1,0,0,0
blog_post,blog.post,model_blog_post,base.group_user,1,1,1,1
blog_post_history,blog.post.history,model_blog_post_history,base.group_user,1,0,1,0
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 blog_category_all blog.category model_blog_category 1 0 0 0
3 blog_post_all blog.post model_blog_post 1 0 0 0
4 blog_post blog.post model_blog_post base.group_user 1 1 1 1
5 blog_post_history blog.post.history model_blog_post_history base.group_user 1 0 1 0

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="res.groups" id="group_website_mail_reply">
<field name="name">Visitors can reply on blogs</field>
<field name="category_id" ref="base.module_category_hidden"/>
</record>
<record model="ir.rule" id="website_blog_post_public">
<field name="name">Blog Post: public: published only</field>
<field name="model_id" ref="model_blog_post"/>
<field name="domain_force">[('website_published', '=', True)]</field>
<field name="groups" eval="[(4, ref('base.group_public'))]"/>
</record>
</data>
</openerp>

View File

@ -0,0 +1,2 @@
sass:
sass --compass --trace -t expanded website_blog.sass website_blog.css

View File

@ -6,4 +6,4 @@
.css_nav_month
display: none
&:first-of-type
display: block
display: block

View File

@ -12,7 +12,7 @@ $(document).ready(function () {
var result = JSON.parse(result);
var blog_id = +window.location.pathname.split("/").pop();
$(result).each(function () {
var $a = $('<a href="/blog/'+this.res_id+'/'+this.id+'"/>').text(this.subject);
var $a = $('<a href="/blog/' + this.category_id + '/' + this.id + '"/>').text(this.name);
var $li = $("<li/>").append($a);
if (blog_id == this.id)
$li.addClass("active");
@ -27,7 +27,7 @@ $(document).ready(function () {
}
});
$form = $('.js_website_mail form#post');
$form = $('.js_website_blog form#comment');
$form.submit(function (e) {
e.preventDefault();
var error = $form.find("textarea").val().length < 3;

View File

@ -0,0 +1,54 @@
-
In order to test the document_page in OpenERP, I create a new page to category blog_category_1
-
!record {model: blog.post, id: test_page0}:
name: Test Page0
category_id: blog_category_1
content: 'Test content
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.'
# -
# I check the category index contains my page.
# -
# !python {model: blog.post}: |
# res = self.read(cr, uid, [ref('blog_category_1')], ['display_content'])
# assert res[0]['display_content'].find('Test Page') > 1
-
!record {model: blog.post, id: test_page0}:
content: 'Test updated content
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: blog.post.history.show_diff}: |
hist_obj = model.pool.get('blog.post.history')
ids = hist_obj.search(cr, uid, [('post_id', '=', ref("test_page0"))])
model.get_diff(cr, uid, {'active_ids': ids[:] })
# -
# I click the "create menu" link and i fill the form.
# -
# !record {model: document.page.create.menu, id: test_create_menu0}:
# menu_name: Wiki Test menu
# menu_parent_id: base.menu_base_partner
# -
# I create a Menu by clicking on "create menu"
# -
# !python {model: document.page.create.menu}: |
# ids = [ref("test_create_menu0")]
# context['active_id'] = ref('test_page0')
# self.document_page_menu_create(cr, uid, ids, context)

View File

@ -0,0 +1,28 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Business Applications
# Copyright (c) 20123TODAY OpenERP S.A. <http://www.openerp.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.addons.website_blog.tests import test_controllers
checks = [
test_controllers,
]
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.addons.mail.tests.test_mail_base import TestMailBase
from openerp.tools import mute_logger, email_split
class TestControllers(TestMailBase):
def test_00(self):
cr, uid = self.cr, self.uid

View File

@ -0,0 +1,172 @@
<?xml version="1.0"?>
<openerp>
<data>
<menuitem name="Knowledge" id="knowledge.menu_document"/>
<menuitem name="Pages" id="menu_wiki" parent="knowledge.menu_document" sequence="20" />
<!-- Category views -->
<record model="ir.ui.view" id="view_blog_category_list">
<field name="name">blog.category.list</field>
<field name="model">blog.category</field>
<field name="arch" type="xml">
<tree string="Blog Categories">
<field name="name"/>
</tree>
</field>
</record>
<record model="ir.ui.view" id="view_blog_category_form">
<field name="name">blog.category.form</field>
<field name="model">blog.category</field>
<field name="arch" type="xml">
<form string="Blog Category" version="7.0">
<sheet>
<group>
<field name="name"/>
<field name="description"/>
<field name="template" widget="html"/>
</group>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
<field name="message_ids" widget="mail_thread" options='{"thread_level": 1}' placeholder="Send a message to the group"/>
</div>
</form>
</field>
</record>
<!-- page list view -->
<record model="ir.ui.view" id="view_blog_post_list">
<field name="name">blog.post.list</field>
<field name="model">blog.post</field>
<field name="arch" type="xml">
<tree string="Blog Posts">
<field name="name"/>
<field name="category_id"/>
<field name="create_uid" invisible="1"/>
<field name="write_uid"/>
<field name="write_date"/>
</tree>
</field>
</record>
<!-- page form view -->
<record model="ir.ui.view" id="view_blog_post_form">
<field name="name">blog.post.form</field>
<field name="model">blog.post</field>
<field name="arch" type="xml">
<form string="Blog Post" version="7.0">
<sheet>
<h1><field name="name" placeholder="Name"/></h1>
<field name="tag_ids" widget="many2many_tags"/>
<group>
<field name="category_id" string="Category"/>
</group>
<group>
<field name="write_uid" groups="base.group_no_one"/>
<field name="write_date" groups="base.group_no_one"/>
<field name="menu_id" groups="base.group_no_one"/>
</group>
<div class="oe_document_page">
<field name="content" placeholder="e.g. Once upon a time..." widget="html"/>
</div>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
<field name="message_ids" widget="mail_thread" options='{"thread_level": 1}' placeholder="Send a message to the group"/>
</div>
</form>
</field>
</record>
<!-- page search view -->
<record model="ir.ui.view" id="view_blog_post_search">
<field name="name">blog.post.search</field>
<field name="model">blog.post</field>
<field name="arch" type="xml">
<search string="Blog Post">
<field name="name" string="Content" filter_domain="['|', ('name','ilike',self), ('content','ilike',self)]"/>
<field name="write_uid"/>
<field name="category_id"/>
<group expand="0" string="Group By...">
<filter string="Category" domain="[]" context="{'group_by': 'category_id'}"/>
<filter string="Author" domain="[]" context="{'group_by': 'create_uid'}"/>
<filter string="Last Contributor" domain="[]" context="{'group_by': 'write_uid'}"/>
</group>
</search>
</field>
</record>
<!-- page action -->
<record model="ir.actions.act_window" id="action_blog_post">
<field name="name">Blog Posts</field>
<field name="res_model">blog.post</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="view_blog_post_list"/>
<field name="search_view_id" ref="view_blog_post_search"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to create a new blog post.
</p>
</field>
</record>
<menuitem id="menu_page" parent="menu_wiki" name="Pages" action="action_blog_post" sequence="10"/>
<record model="ir.actions.act_window" id="action_blog_category">
<field name="name">Category</field>
<field name="res_model">blog.category</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem id="menu_category" parent="menu_wiki" name="Categories" action="action_blog_category" sequence="20"/>
<!-- History Tree view -->
<record model="ir.ui.view" id="view_blog_history_tree">
<field name="name">blog.post.history.tree</field>
<field name="model">blog.post.history</field>
<field name="arch" type="xml">
<tree string="Document History">
<field name="create_date"/>
<field name="create_uid"/>
<field name="page_id"/>
</tree>
</field>
</record>
<!-- History Form view -->
<record model="ir.ui.view" id="view_blog_history_form">
<field name="name">blog.post.history.form</field>
<field name="model">blog.post.history</field>
<field name="arch" type="xml">
<form string="Blog Post History" version="7.0">
<label for="page_id" class="oe_edit_only"/>
<h1><field name="page_id" select="1" /></h1>
<label for="create_date" class="oe_edit_only"/>
<field name="create_date" readonly="1"/>
<label for="content" class="oe_edit_only"/>
<field name="content" colspan="4"/>
</form>
</field>
</record>
<!-- History Action -->
<record model="ir.actions.act_window" id="action_history">
<field name="name">Page history</field>
<field name="res_model">blog.post.history</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem id="menu_page_history" parent="menu_wiki" name="Pages history" action="action_history" sequence="30" groups="base.group_no_one"/>
<act_window
id="action_related_page_history"
context="{'search_default_page_id': [active_id], 'default_page_id': active_id}"
domain="[('page_id','=',active_id)]"
name="Page History"
res_model="blog.post.history"
src_model="blog.post"/>
<!-- <act_window
id="action_related_page_create_menu"
name="Create Menu"
res_model="blog.post.create.menu"
target="new"
view_type="form"
view_mode="form"
src_model="blog.post"/> -->
</data>
</openerp>

View File

@ -0,0 +1,151 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- Layout add nav and footer -->
<template id="header_footer_custom" inherit_id="website.layout">
<xpath expr="//header//ul[@id='top_menu']/li[@name='contactus']" position="before">
<li><a href="/blog/%(website_blog.blog_category_1)d/">News</a></li>
</xpath>
<xpath expr="//footer//div[@name='info']/ul" position="inside">
<li><a href="/blog/%(website_blog.blog_category_1)d/">News</a></li>
</xpath>
</template>
<!-- Blog Post Summary -->
<template id="view_blog_post_short" name="Blog Post Short">
<div class="media-body">
<t t-call="website_mail.follow"><t t-set="object" t-value="blog_post"/></t>
<t t-call="website.publish"><t t-set="object" t-value="blog_post"/></t>
<small class="text-muted">
<t t-field="blog_post.create_uid"/> on <t t-field="blog_post.create_date"/>
</small>
<h4 class="media-heading" ><a t-attf-href="/blog/#{blog_post.category_id.id}/#{blog_post.id}#comment" t-field="blog_post.name"></a></h4>
<div class="media">
<div t-field="blog_post.shortened_content"/>
<small class="pull-left muted text-right">
<a t-if="len(blog_post.message_ids) &lt;= 1" t-attf-href="/blog/#{blog_post.category_id.id}/#{blog_post.id}#comments"><t t-esc="len(blog_post.message_ids)"/> Comment</a>
<a t-if="len(blog_post.message_ids) > 1" t-attf-href="/blog/#{blog_post.category_id.id}/#{blog_post.id}#comments"><t t-esc="len(blog_post.message_ids)"/> Comments</a>
</small>
</div>
</div>
</template>
<!-- Blog Post Complete -->
<template id="view_blog_post" name="Blog Post">
<div class="media">
<div class="media-body">
<t t-call="website_mail.follow"><t t-set="object" t-value="blog_post"/></t>
<t t-call="website.publish"><t t-set="object" t-value="blog_post"/></t>
<small class="text-muted">
<t t-field="blog_post.create_uid"/> on <t t-field="blog_post.create_date"/>
</small>
<h3 t-field="blog_post.name"/>
<t t-foreach="blog_post.tag_ids" t-as="tag">
<a class="btn btn-sm btn-info" href="/blog/tag/#{tag.id}"><t t-esc="tag.name"/></a>
</t>
<div t-field="blog_post.content"/>
</div>
<hr />
<div class="clearfix">
<div class="pull-right text-right">
<t t-call="website.pager" class="pull-right"/>
</div>
<t t-if="len(blog_post.website_message_ids) &lt;= 1">
<t t-esc="len(blog_post.website_message_ids)"/> Comment
</t>
<t t-if="len(blog_post.website_message_ids) > 1">
<t t-esc="len(blog_post.website_message_ids)"/> Comments
</t>
</div>
<form id="comment" t-attf-action="/blog/#{blog_post.category_id.id}/#{blog_post.id}/post#post"
method="POST" class="form-horizontal text-center"
groups="group_website_blog_reply">
<div>
<textarea rows="4" placeholder="Your comment" class="form-control"></textarea>
</div>
<button type="submit" class="btn btn-default">Post your comment</button>
</form>
<ul class="media-list" id="comments">
<li t-foreach="blog_post.website_message_ids" t-as="message" class="media">
<div class="media-body well well-sm">
<t t-call="website.publish"><t t-set="object" t-value="message"/></t>
<t t-raw="message.body"/>
<small class="pull-left text-muted text-left">
<t t-field="message.author_id"/> on <t t-field="message.date"/>
</small>
</div>
</li>
</ul>
</div>
</template>
<!-- Page -->
<template id="index" name="Blogs" page="True">
<t t-call="website.layout">
<t t-set="head">
<script type="text/javascript" src="/website_blog/static/src/js/website_blog.js"></script>
<link rel='stylesheet' href='/website_blog/static/src/css/website_blog.css'/>
<t t-raw="head or ''"/>
</t>
<t t-set="title">Blog</t>
<div id="wrap">
<div class="container mt48 js_website_blog">
<div class="row">
<div class="col-md-3" id="left_column">
<h4>Categories</h4>
<ul class="nav nav-pills nav-stacked">
<t t-foreach="categories" t-as="nav_category">
<li t-att-class="'active' if category and category.id == nav_category.id else ''">
<a t-attf-href="/blog/#{nav_category.id}">
<t t-field="nav_category.name"/>
</a>
</li>
</t>
</ul>
<t t-if="category">
<a t-if="editable" t-attf-href="/blog/#{category.id}/new" class="btn btn-default">New Blog Post</a>
<t t-call="website_mail.follow"><t t-set="object" t-value="category"/></t>
</t>
</div>
<div class="col-md-9" t-if="blog_post">
<t t-call="website_blog.view_blog_post"><t t-set="blog_post" t-value="blog_post"/></t>
</div>
<div class="col-md-9" t-if="not blog_post and blog_posts">
<ul class="media-list">
<li t-foreach="blog_posts" t-as="blog_post" data-publish="">
<t t-call="website_blog.view_blog_post_short"/>
</li>
</ul>
<div class="text-center">
<t t-call="website.pager"/>
</div>
</div>
</div>
</div>
</div>
</t>
</template>
<!-- Option: archives -->
<template id="blog_history" inherit_id="website_blog.index" inherit_option_id="website_blog.index" name="Archives">
<xpath expr="//div[@id='left_column']" position="inside">
<h4>Archives</h4>
<ul class="nav nav-pills nav-stacked">
<li t-foreach="nav_list" t-as="year" class="js_nav_year">
<t t-set="year" t-value="nav_list[year]"/>
<a href="#"><t t-esc="year['name']"/> <small>(<t t-esc="year['create_date_count']"/>)</small></a>
<ul class="nav list-group css_nav_month nav-stacked nav-hierarchy">
<t t-foreach="year['months']">
<li class="js_nav_month"><a href="#" t-att-data-domain="__domain"><t t-esc="create_date"/> <small>(<t t-esc="create_date_count"/>)</small></a>
<ul class="nav list-group nav-stacked nav-hierarchy"/>
</li>
</t>
</ul>
</li>
</ul>
</xpath>
</template>
</data>
</openerp>

View File

@ -0,0 +1,199 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp import tools
from openerp import SUPERUSER_ID
from openerp.osv import osv, fields
from openerp.tools.translate import _
import difflib
class BlogCategory(osv.Model):
_name = 'blog.category'
_description = 'Blog Category'
_inherit = ['mail.thread']
_order = 'name'
_columns = {
'name': fields.char('Name', required=True),
'description': fields.text('Description'),
'template': fields.html('Template'),
'blog_post_ids': fields.one2many(
'blog.post', 'category_id',
'Blogs',
),
}
class BlogTag(osv.Model):
_name = 'blog.tag'
_description = 'Blog Tag'
_order = 'name'
_columns = {
'name': fields.char('Name', required=True),
'blog_post_ids': fields.many2many(
'blog.post', string='Posts',
),
}
class BlogPost(osv.Model):
_name = "blog.post"
_description = "Blog Post"
_inherit = ['mail.thread']
_order = 'name'
# maximum number of characters to display in summary
_shorten_max_char = 150
def get_shortened_content(self, cr, uid, ids, name, arg, context=None):
res = {}
for page in self.browse(cr, uid, ids, context=context):
try:
body_short = tools.html_email_clean(
page.content,
remove=True,
shorten=True,
max_length=self._shorten_max_char,
expand_options={
'oe_expand_href': '/blog/%d/%d' % (page.category_id.id, page.id),
}
)
except Exception:
body_short = False
res[page.id] = body_short
return res
_columns = {
'name': fields.char('Title', required=True),
'category_id': fields.many2one(
'blog.category', 'Category',
required=True, ondelete='cascade',
),
'tag_ids': fields.many2many(
'blog.tag', string='Tags',
),
'content': fields.html('Content'),
'shortened_content': fields.function(
get_shortened_content,
type='html',
string='Shortened Content',
help="Shortened content of the page that serves as a summary"
),
# website control
'website_published': fields.boolean(
'Publish', help="Publish on the website"
),
'website_published_datetime': fields.datetime(
'Publish Date'
),
'website_message_ids': fields.one2many(
'mail.message', 'res_id',
domain=lambda self: [
'&', ('model', '=', self._name), ('type', '=', 'comment')
],
string='Website Messages',
help="Website communication history",
),
# technical stuff: history, menu (to keep ?)
'history_ids': fields.one2many(
'blog.post.history', 'post_id',
'History', help='Last post modifications'
),
'menu_id': fields.many2one('ir.ui.menu', "Menu", readonly=True),
# creation / update stuff
'create_date': fields.datetime(
'Created on',
select=True, readonly=True,
),
'create_uid': fields.many2one(
'res.users', 'Author',
select=True, readonly=True,
),
'write_date': fields.datetime(
'Last Modified on',
select=True, readonly=True,
),
'write_uid': fields.many2one(
'res.users', 'Last Contributor',
select=True, readonly=True,
),
}
def create_history(self, cr, uid, ids, vals, context=None):
for i in ids:
history = self.pool.get('blog.post.history')
if vals.get('content'):
res = {
'content': vals.get('content', ''),
'post_id': i,
}
history.create(cr, uid, res)
def create(self, cr, uid, vals, context=None):
if context is None:
context = {}
create_context = dict(context, mail_create_nolog=True)
post_id = super(BlogPost, self).create(cr, uid, vals, context=create_context)
self.create_history(cr, uid, [post_id], vals, context)
return post_id
def write(self, cr, uid, ids, vals, context=None):
result = super(BlogPost, self).write(cr, uid, ids, vals, context)
self.create_history(cr, uid, ids, vals, context)
return result
def img(self, cr, uid, ids, field='image_small', context=None):
post = self.browse(cr, SUPERUSER_ID, ids[0], context=context)
return "/website/image?model=%s&field=%s&id=%s" % ('res.users', field, post.create_uid.id)
class BlogPostHistory(osv.Model):
_name = "blog.post.history"
_description = "Document Page History"
_order = 'id DESC'
_rec_name = "create_date"
_columns = {
'post_id': fields.many2one('blog.post', 'Blog Post'),
'summary': fields.char('Summary', size=256, select=True),
'content': fields.text("Content"),
'create_date': fields.datetime("Date"),
'create_uid': fields.many2one('res.users', "Modified By"),
}
def getDiff(self, cr, uid, v1, v2, context=None):
history_pool = self.pool.get('blog.post.history')
text1 = history_pool.read(cr, uid, [v1], ['content'])[0]['content']
text2 = history_pool.read(cr, uid, [v2], ['content'])[0]['content']
line1 = line2 = ''
if text1:
line1 = text1.splitlines(1)
if text2:
line2 = text2.splitlines(1)
if (not line1 and not line2) or (line1 == line2):
raise osv.except_osv(_('Warning!'), _('There are no changes in revisions.'))
diff = difflib.HtmlDiff()
return diff.make_table(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=True)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<!-- <data noupdate="1"> -->
<data>
<record id="action_open_website" model="ir.actions.act_url">
<field name="name">Website Blogs</field>
<field name="target">self</field>
<field name="url">/blog</field>
</record>
<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_open_website"/>
<field name="state">open</field>
</record>
<!-- CATEGORIES -->
<record id="blog_category_1" model="blog.category">
<field name="name">News</field>
<field name="description">Presentation of new OpenERP features</field>
<field name="template">
Summary of the feature
Long explanation
Conclusion
Additional ressources
</field>
</record>
<!-- Post-related subtypes for messaging / Chatter -->
<record id="mt_blog_post_new" model="mail.message.subtype">
<field name="name">New Post</field>
<field name="res_model">blog.post</field>
<field name="default" eval="True"/>
<field name="description">New Post</field>
</record>
<record id="mt_blog_post_published" model="mail.message.subtype">
<field name="name">Post Published</field>
<field name="res_model">blog.post</field>
<field name="default" eval="False"/>
<field name="description">Post Published</field>
</record>
<!-- Project-related subtypes for messaging / Chatter -->
<record id="mt_blog_category_post_new" model="mail.message.subtype">
<field name="name">New Post</field>
<field name="res_model">blog.category</field>
<field name="default" eval="True"/>
<field name="parent_id" eval="ref('mt_blog_post_new')"/>
<field name="relation_field">category_id</field>
</record>
</data>
</openerp>

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<!-- <data noupdate="1"> -->
<data>
<!-- TAGS -->
<record id="blog_tag_1" model="blog.tag">
<field name="name">functional</field>
</record>
<record id="blog_tag_2" model="blog.tag">
<field name="name">pos</field>
</record>
<!-- POSTS -->
<record id="blog_post_1" model="blog.post">
<field name="name">OpenERP 7.0 Functional Demo</field>
<field name="category_id" ref="blog_category_1"/>
<field name="tag_ids" eval="[(6, 0, [ref('blog_tag_1')])]"/>
<field name="content">
<![CDATA[<p>The news is out, OpenERP's latest version 7.0 is here. It's more
user-friendly, even more business oriented and efficient to manage your company.</p>
<p>How to discover the latest version 6.1.?</p>
<ul>
<li>
<a target="http://demo.openerp.com" href="http://demo.openerp.com" style="background: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeF59z4EJADEIQ1F36k7u5E7ZKXeUQPACJ3wK7UNokVxVk9kHnQH7bY9hbDyDhNXgjpRLqFlo4M2GgfyJHhjq8V4agfrgPQX3JtJQGbofmCHgA/nAKks+JAjFAAAAAElFTkSuQmCC&quot;) no-repeat scroll right center transparent;padding-right: 13px;">Demo</a>
</li><li>
<a target="http://openerp.com/online" href="http://openerp.com/online" style="background: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeF59z4EJADEIQ1F36k7u5E7ZKXeUQPACJ3wK7UNokVxVk9kHnQH7bY9hbDyDhNXgjpRLqFlo4M2GgfyJHhjq8V4agfrgPQX3JtJQGbofmCHgA/nAKks+JAjFAAAAAElFTkSuQmCC&quot;) no-repeat scroll right center transparent;padding-right: 13px;">Online</a>
</li><li>
<a target="http://openerp.com/downloads" href="http://openerp.com/downloads" style="background: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeF59z4EJADEIQ1F36k7u5E7ZKXeUQPACJ3wK7UNokVxVk9kHnQH7bY9hbDyDhNXgjpRLqFlo4M2GgfyJHhjq8V4agfrgPQX3JtJQGbofmCHgA/nAKks+JAjFAAAAAElFTkSuQmCC&quot;) no-repeat scroll right center transparent;padding-right: 13px;">Download</a>
</li>
</ul>
<p>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.</p>
<h3>Watch on Youtube!</h3>
<iframe width="480" height="390" src="http://www.youtube.com/embed/7jES2jxKMso " frameborder="0" allowfullscreen=""></iframe>
]]>
</field>
</record>
<record id="blog_post_2" model="blog.post">
<field name="name">Personalise Dashboards</field>
<field name="category_id" ref="blog_category_1"/>
<field name="tag_ids" eval="[(6, 0, [ref('blog_tag_1')])]"/>
<field name="content">
<![CDATA[
<p>You like OpenERP, but feel like you want to personalise it more? Now, OpenERP
goes a step further and lets you customize your dashboard. Thanks to a new
feature that allows you to customize your dashboard by adding new boards of any
search view.</p>
<h3>How is it done?</h3>
<ul>
<li>Step 1: access one search view</li>
<li>Step 2: apply the filter you want to see at each connection to the application
(eg. on sales, manufacturing, etc)</li>
<li>Step 3: add it into the dashboard in the same space where you can save the filter</li>
<li>Step 4: choose the application you want it visible on and the name of the array</li>
</ul>
<p>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.</p>
<img src="http://www.openerp.com/sites/default/files/fileattach/dashboard2_1(1).png" alt="">
<p>In less than a minute, the search view is visible on the dashboard</p>
<img src="http://www.openerp.com/sites/default/files/fileattach/dashboard2_2.png" alt="">
<p>Of course, you are free to delete what you don't need or like, but just in case<br>
you change your mind there is a reset button to return to the default view.</p>
]]>
</field>
</record>
<record id="blog_post_3" model="blog.post">
<field name="name">Touchscreen Point of Sale</field>
<field name="category_id" ref="blog_category_1"/>
<field name="tag_ids" eval="[(6, 0, [ref('blog_tag_1'), ref('blog_tag_2')])]"/>
<field name="content">
<![CDATA[<p>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.</p>
<img src="http://www.openerp.com/sites/default/files/fileattach/POS(2).png" alt="">
<h3>Here's a summary of its main features and benefits:</h3>
<ul>
<li>100% WEB based</li>
<li>available for any touchscreen device (ipod, ipad, any tablet)mobile (with portable devices)</li>
<li>no installation required</li>
<li>no synchronization needed, completely integrated</li>
<li>continue working even when your connection is down if you close your browser, data won't be lost</li>
<li>fully web based with a clean interface smart interface</li>
</ul>
<p>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.</p>
<p>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.
</p>
]]>
</field>
</record>
</data>
</openerp>

View File

@ -19,7 +19,7 @@
#
##############################################################################
import document_page_create_menu
# import document_page_create_menu
import document_page_show_diff
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -21,17 +21,17 @@
from openerp.osv import fields, osv
from openerp.tools.translate import _
import base64
class showdiff(osv.osv_memory):
""" Disp[ay Difference for History """
_name = 'wizard.document.page.history.show_diff'
_name = 'blog.post.history.show_diff'
def get_diff(self, cr, uid, context=None):
if context is None:
context = {}
history = self.pool.get('document.page.history')
history = self.pool.get('blog.post.history')
ids = context.get('active_ids', [])
diff = ""
@ -43,7 +43,7 @@ class showdiff(osv.osv_memory):
elif len(ids) == 1:
old = history.browse(cr, uid, ids[0])
nids = history.search(cr, uid, [('page_id', '=', old.page_id.id)])
nids = history.search(cr, uid, [('post_id', '=', old.post_id.id)])
nids.sort()
diff = history.getDiff(cr, uid, ids[0], nids[-1])
else:

View File

@ -5,7 +5,7 @@
<!-- Create Index Form view -->
<record id="view_wiki_show_diff" model="ir.ui.view">
<field name="name">Show Difference</field>
<field name="model">wizard.document.page.history.show_diff</field>
<field name="model">blog.post.history.show_diff</field>
<field name="arch" type="xml">
<form string="Difference" version="7.0">
<field name="diff" widget="html" options='{"safe": True}'/>
@ -19,7 +19,7 @@
<record id="action_view_wiki_show_diff" model="ir.actions.act_window">
<field name="name">Difference</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">wizard.document.page.history.show_diff</field>
<field name="res_model">blog.post.history.show_diff</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
@ -29,8 +29,8 @@
id="action_view_wiki_show_diff_values"
key2="client_action_multi"
name="Difference"
res_model="wizard.document.page.history.show_diff"
src_model="document.page.history"
res_model="blog.post.history.show_diff"
src_model="blog.post.history"
view_mode="form"
target="new"
view_type="form"/>

View File

@ -105,7 +105,7 @@
<div class="pull-left">
</div>
<h4>Description</h4>
<p t-field="job.description"></p>
<p class="oe_structure" t-field="job.description"></p>
<h4>Requirements</h4>
<p t-field="job.requirements"></p>
<t t-call="website_hr_recruitment.applyjobpost"/>

View File

@ -1,3 +1,23 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import controllers
import mail_message
import res_config

View File

@ -1,21 +1,44 @@
{
'name': 'Blogs',
'category': 'Website',
'summary': 'News, Blogs, Announces, Discussions',
'version': '1.0',
'description': """
OpenERP Blog
============
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
""",
{
'name': 'Website Mail',
'category': 'Website',
'summary': 'Glue Module',
'version': '0.1',
'description': """Glue module holding mail improvements for website.""",
'author': 'OpenERP SA',
'depends': ['website', 'mail'],
'data': [
'website_mail_data.xml',
'views/website_mail.xml',
'views/res_config.xml',
'security/website_mail.xml',
],
'qweb': ['static/src/xml/*.xml'],
'css': [
'static/src/css/website_mail.css',
],
'js': [
'static/src/js/website_mail.js',
],
'qweb': [
'static/src/xml/website_mail.xml'
],
'installable': True,
'auto_install': True,
}

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